Record of all attempts to deliver a webhook.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Uniquely identifies the webhook_delivery record. | [optional] |
| userId | UUID | Uniquely identifies the user that owns the webhook_delivery record. | [optional] |
| recordType | String | Identifies the type of the resource. | [optional] |
| status | StatusEnum | Delivery status: 'delivered' when successfuly delivered or 'failed' if all attempts have failed. | [optional] |
| webhook | WebhookDeliveryWebhook | [optional] | |
| startedAt | OffsetDateTime | ISO 8601 timestamp indicating when the first request attempt was initiated. | [optional] |
| finishedAt | OffsetDateTime | ISO 8601 timestamp indicating when the last webhook response has been received. | [optional] |
| attempts | List<Attempt> | Detailed delivery attempts, ordered by most recent. | [optional] |
| Name | Value |
|---|---|
| DELIVERED | "delivered" |
| FAILED | "failed" |