latestOpenAPI 3.0.12026-08-101292701.1 MB
f21981db32be
Webhooks
Returns a list of webhooks
Get all webhooks.
get/webhooks
Query parameters
typestring
A string containing a specific webhook endpoint name, or a group of events using * as a wildcard. The list will be filtered to include only webhooks with a matching webhook property.
typesstring
An array of up to 20 strings containing specific event names. The list will be filtered to include only events with a matching event property. You may pass either type or types, but not both.
Response
200 OK. A dictionary with a data property that contains an array of up to limit webhooks. Each entry in the array is a separate webhook object. If no more webhooks are available, the resulting array will be empty. This request should never return an error.
Example response
[
{
"createdTime": "2018-08-29T09:12:33.001Z",
"updatedTime": "2018-08-29T09:12:33.001Z",
"types": [
"order.created"
],
"apiVersion": "default",
"enabled": true,
"address": "https://company.com"
}
]