Get Webhooks
GEThttps://api.goodsdelivery.io/v1/brands/:brandId/webhooks
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
Use this endpoint to list all created webhooks for your brand.
Request
Path Parameters
brandId stringrequired
The ID of the brand.
Responses
- 200
- 401
If the request if valid, the a success response will contain a full list of all webhooks associated with the requested brand.
- application/json
- Schema
- Example (from schema)
Schema
success booleanrequired
objects object[]required
{
"success": true,
"objects": [
{
"id": "string",
"url": "string",
"brandId": "string",
"scopes": [
"DELIVERY_STATUS_UPDATED"
],
"additionalHeaders": [
{
"key": "string",
"value": "string"
}
]
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.goodsdelivery.io/v1/brands/:brandId/webhooks' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>'
ResponseClear