NavigationContentFooter
Jump toSuggest an edit

Understanding Webhook event payloads

Reviewed on 20 September 2024Published on 20 September 2024

Events triggered by webhooks contain payloads that describe and detail the events.

Find below a detailed description of the fields in a Webhoook event payload.

TagDescription
idEvent identifier
typeEvent type
organization_idDomain Organization
project_idDomain Project
domain_idDomain identifier
domain_nameDomain name
created_atEvent creation date. Dates should be included in RFC-3339 format.
email_sent_atEmail reception date by the recipient server. Dates should be included in RFC-3339 format.
email_queued_atEmail reception date by TEM proxy or API. Dates should be included in RFC-3339 format.
email_idEmail identifier (used for GetEmail endpoint)
email_fromEmail FROM address
email_toEmail recipient address
email_headersSMTP headers
email_errorSMTP message explaining the drop
email_next_tryNext time the email will be sent to the recipient server
email_try_countTotal number of tries attempted for this email

Examples of payload by event type

Webhooks may trigger different types of events. These types have varying payload fields.

email_queued

{
"id": string,
"type": "email_queued",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_queued_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
]
}

email_dropped

{
"id": string,
"type": "email_dropped",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_sent_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
],
"email_error": string,
}

email_delivered

{
"id": string,
"type": "email_delivered",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_sent_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
]
}

email_mailbox_not_found

{
"id": string,
"type": "email_mailbox_not_found",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_sent_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
]
}

email_spam

{
"id": string,
"type": "email_spam",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_sent_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
]
}

email_deferred

{
"id": string,
"type": "email_deferred",
"organization_id": string,
"project_id": string,
"domain_id": string,
"domain_name": string,
"created_at": date,
"email_sent_at": date,
"email_id": string,
"email_from": string,
"email_to": string,
"email_headers": [
{
"name": string,
"value": string
}
],
"email_error": string,
"email_next_try": date,
"email_try_count": integer
}
Docs APIScaleway consoleDedibox consoleScaleway LearningScaleway.comPricingBlogCarreer
© 2023-2024 – Scaleway