Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.22 KB

WebhookDelivery.md

File metadata and controls

30 lines (18 loc) · 1.22 KB

WebhookDelivery

Record of all attempts to deliver a webhook.

Properties

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]

Enum: StatusEnum

Name Value
DELIVERED "delivered"
FAILED "failed"