# Webhooks Object

> Source: https://truto.one/docs/api-reference/admin/webhooks/

Schema for the `Webhooks` resource in **Admin API**.

## Properties

- **`id`** _(string)_
  The ID of the webhook.
- **`target_url`** _(string)_
  The URL where the webhook should send the data.
- **`is_active`** _(boolean)_
  Whether the webhook is active or not. Inactive webhooks will not receive any data.
- **`environment_id`** _(string)_
  The ID of the environment that this webhook belongs to.
- **`event_types`** _(array<string>)_
  The list of event types that the webhook is subscribed to.
- **`created_at`** _(string)_
  The date and time when the webhook was created.
- **`updated_at`** _(string)_
  The date and time when the webhook was last updated.

## Methods

- [GET /webhook](/docs/api-reference/admin/webhooks/list) — List webhooks
- [POST /webhook](/docs/api-reference/admin/webhooks/create) — Create webhook
- [GET /webhook/{id}](/docs/api-reference/admin/webhooks/get) — Get webhook
- [PATCH /webhook/{id}](/docs/api-reference/admin/webhooks/update) — Update webhook
- [DELETE /webhook/{id}](/docs/api-reference/admin/webhooks/delete) — Delete webhook
- [POST /webhook/test](/docs/api-reference/admin/webhooks/test) — Send test event
