Lists all webhook subscriptions owned by your application.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request samples
curl --location --request GET 'https://api-v2.fastpod.net/v1/webhooks' \
--header 'Accept: application/json'
Responses
application/json [
{
"id": 100,
"store_id": 10000,
"url": "url",
"event": "order_status",
"created_at": "2022-07-08T12:50:00.000000Z",
"updated_at": "2022-07-08T12:50:00.000000Z"
},
{
"id": 101,
"store_id": 10000,
"url": "url",
"event": "shipment_status",
"created_at": "2022-07-08T08:01:15.000000Z",
"updated_at": "2022-07-08T08:01:15.000000Z"
},
{
"id": 102,
"store_id": 10000,
"url": "url",
"event": "stock_status",
"created_at": "2022-07-08T08:01:15.000000Z",
"updated_at": "2022-07-08T08:01:15.000000Z"
}
]
Modified at 2023-12-08 04:06:24