Light Mode
List Events
GET
/webhooks/eventsLast modified: 16 days ago
This endpoint allows you to list all the available events that can be used in registering webhooks from this endpoint.
:::info[Information]
Read more about Webhook Events here.
:::
Request
None
Request samples
Responses
A successful call returns a payload that contains a current list of the available webhooks events.
(200)
A successful call returns a payload that contains a current list of the available webhooks events.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 200,
"success": true,
"data": [
{
"id": 1473353380,
"label": "تم إنشاء طلب",
"event": "order.created"
},
{
"id": 566146469,
"label": "تم تحديث بيانات طلب",
"event": "order.updated"
},
{
"id": 1939592358,
"label": "تم إنشاء منتج",
"event": "product.created"
},
{
"id": 1298199463,
"label": "تم تحديث بيانات منتج",
"event": "product.updated"
},
{
"id": 525144736,
"label": "تم حذف منتج",
"event": "product.deleted"
},
{
"id": 1764372897,
"label": "تمت إضافة عميل",
"event": "customer.created"
},
{
"id": 989286562,
"label": "تم تحديث بيانات عميل",
"event": "customer.updated"
},
{
"id": 349994915,
"label": "تمت إضافة تصنيف",
"event": "category.created"
},
{
"id": 1723506348,
"label": "تم تحديث بيانات تصنيف",
"event": "category.updated"
}
]
}
Last modified: 16 days ago