Skip to main content
POST
/
webhooks
/
resend
Receive Resend webhook events
curl --request POST \
  --url https://emails.platform.arb.inc/webhooks/resend \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "email.delivered",
  "created_at": "2025-08-15T10:30:00Z",
  "data": {
    "email_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "from": "support@arb.inc",
    "to": [
      "user@example.com"
    ],
    "subject": "Notice of Service - Case 2025-08-00292",
    "created_at": "2025-08-15T10:25:00Z"
  }
}
'
"OK"

Body

application/json
type
string
required

Event type from Resend

Example:

"email.delivered"

created_at
string<date-time>
required

Timestamp when the event occurred

Example:

"2025-08-15T10:30:00Z"

data
object
required

Response

200 - text/plain

Webhook event processed successfully

The response is of type string.

Example:

"OK"