Skip to main content

Webhook Payload

The body of a webhook payload is a JSON object that describes the target that triggered the webhook, as well as the event that has been triggered.

Properties

NameTypeRequiredDescription
event_idintegertrueThe id of the event that triggered the webhook
typestringtrueThe name of the event that triggered the webhook
createdfloattrueThe time or date that the event was triggered at
dataobjecttrueObject that contains information about the event associated with the webhook.
{
"event_id": 0,
"type": "string",
"created": 1625471209.139224,
"data": {}
}