# `PolarExpress.Schemas.WebhookEndpoint`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/webhook_endpoint.ex#L2)

WebhookEndpoint

A webhook endpoint.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.WebhookEndpoint{
  created_at: DateTime.t() | nil,
  enabled: boolean() | nil,
  events: [PolarExpress.Schemas.WebhookEventType.t()] | nil,
  format: PolarExpress.Schemas.WebhookFormat.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  name: String.t() | nil,
  organization_id: String.t() | nil,
  secret: String.t() | nil,
  url: String.t() | nil
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `enabled` - Whether the webhook endpoint is enabled and will receive events.
* `events` - The events that will trigger the webhook.
* `format` - The format of the webhook payload.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `name` - An optional name for the webhook endpoint to help organize and identify it. Nullable.
* `organization_id` - The organization ID associated with the webhook endpoint. Format: uuid4.
* `secret` - The secret used to sign the webhook events.
* `url` - The URL where the webhook events will be sent. Format: uri. Max length: 2083.

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
