order.status.changed{
"event": "order.status.changed",
"created_at": "2026-06-13T14:22:45+03:00",
"data": {
"order": {
"id": 724,
"identifier": 724,
"order_id": "260724",
"name": "Test User",
"email": "test@example.com",
"phone": "555123456",
"full_address": "",
"total_amount": 99.98,
"status": {
"value": "processing",
"label": {
"ar": "قيد المعالجة",
"en": "Processing"
},
"color": "info"
},
"payment_status": {
"value": "paid",
"label": {
"ar": "مدفوع",
"en": "Paid"
},
"color": "success"
},
"payment_gateway": {
"value": "cash-on-delivery",
"label": {
"ar": "الدفع عند التسليم",
"en": "Cash On Delivery"
}
},
"customer": {
"id": 1080,
"name": "Test User",
"email": "test@example.com",
"mobile": "555123456"
},
"products": [
{
"id": 892,
"quantity": 2,
"price": 49.99,
"product": {
"id": 226,
"identifier": 226,
"name": {
"ar": "حذاء رياضي نايك",
"en": "Nike Sports Shoe"
},
"price": 79.99,
"sale_price": 49.99,
"stock": 130
}
}
],
"payment_meta": {
"shipping_cost": 0,
"subtotal": 99.98,
"total_tax": 0,
"total": 99.98
},
"created_at": "2026-06-11 14:28:18",
"updated_at": "2026-06-13 14:22:45"
}
}
}| Field | Type | Description |
|---|---|---|
| event | string | Webhook event name |
| created_at | datetime | Event creation timestamp |
| data | object | Event payload |
| Field | Type | Description |
|---|---|---|
| id | integer | Internal order ID |
| identifier | integer | Order identifier |
| order_id | string | Human-readable order number |
| name | string | Customer name |
| string | null | |
| phone | string | Customer phone |
| full_address | string | Full shipping address |
| total_amount | decimal | Total order amount |
| customer | object | Customer information |
| status | object | Updated order status |
| payment_status | object | Current payment status |
| payment_gateway | object | Payment method |
| products | array | Purchased products |
| payment_meta | object | Payment summary |
| created_at | datetime | Order creation date |
| updated_at | datetime | Last order update date |
| Field | Type |
|---|---|
| id | integer |
| name | string |
| string | |
| mobile | string |
| Field | Type |
|---|---|
| id | integer |
| quantity | integer |
| price | decimal |
| product | object |
| Field | Type |
|---|---|
| id | integer |
| identifier | integer |
| name | object |
| price | decimal |
| sale_price | decimal |
| stock | integer |