Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 7.99 KB

File metadata and controls

16 lines (12 loc) · 7.99 KB

WebhookDelivery

A webhook delivery for a webhook event.

Fields

Field Type Required Description
created_at date ✔️ Creation timestamp of the object.
modified_at date ✔️ Last modification timestamp of the object.
id str ✔️ The ID of the object.
succeeded bool ✔️ Whether the delivery was successful.
http_code Nullable[int] ✔️ The HTTP code returned by the URL. null if the endpoint was unreachable.
response Nullable[str] ✔️ The response body returned by the URL, or the error message if the endpoint was unreachable.
webhook_event models.WebhookEvent ✔️ A webhook event.

An event represent something that happened in the system
that should be sent to the webhook endpoint.

It can be delivered multiple times until it's marked as succeeded,
each one creating a new delivery.