Customer Welcome Webhook#
Triggered when a welcome event is sent to a newly registered customer.Event Name#
Payload Example#
{
"event": "customer.welcome",
"created_at": "2026-07-14T17:39:09+03:00",
"data": {
"customer": {
"id": 1083,
"name": "customer",
"username": null,
"email": "customer@test.com",
"mobile": "966855566552",
"image": "https://example.com/assets/img/no-image.jpg",
"is_verified": false,
"is_trusted": false,
"created_at": "2026-07-14 17:39:08",
"updated_at": "2026-07-14 17:39:08"
}
}
}
Payload Schema#
Root Object#
| Field | Type | Description |
|---|
| event | string | Webhook event name |
| created_at | datetime | Event creation timestamp |
| data | object | Event payload |
Customer Object#
| Field | Type | Description |
|---|
| id | integer | Customer ID |
| name | string | Customer full name |
| username | string|null | Customer username, if set |
| email | string | Customer email |
| mobile | string | Customer phone number |
| image | string | Customer avatar URL |
| is_verified | boolean | Whether the customer is verified |
| is_trusted | boolean | Whether the customer is trusted |
| created_at | datetime | Account creation date |
| updated_at | datetime | Last account update date |
Response#
Your endpoint should return:Modified at 2026-07-14 14:41:28