List webhooks
GET/openapi/2026-07/webhooks
List webhooks with a unique identifier, notification URL, event name, and format.
Request
Query Parameters
Webhook notification URL, e.g. https://example.com/webhook
The event name, e.g. orders/cancelled,orders/create
Filter webhook records created at after date, e.g. 2018-08-26T06:19:53Z
Filter webhook records created at before date, e.g. 2018-08-26T06:19:53Z
Filter webhook records updated at after date, e.g. 2018-08-26T06:19:53Z
Filter webhook records updated at before date, e.g. 2018-08-26T06:19:53Z
Number of records to retrieve
Page cursor, used to retrieve the next page of records
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
webhooks object[]
List of webhooks
The unique identifier of the webhook
Webhook notification URL, e.g. https://example.com/webhook
The topic of the webhook
The time of the webhook was created
The time of the webhook was updated
The format of the webhook
Page cursor, used to retrieve the next page of records
Indicates if there are more records to retrieve
{
"code": "string",
"message": "string",
"data": {
"webhooks": [
{
"id": "string",
"address": "string",
"topic": "string",
"created_at": "string",
"updated_at": "string",
"format": "string"
}
],
"cursor": "string",
"has_more": true
}
}