Get all webhooks
Endpoint for retrieving webhooks that belong to current user.
Query parameters
-
page
number(float) Minimum value is
1
. Default value is1
.
GET
/advertising/v1.0/webhooks/
curl \
-X GET http://apis.public-staging.reas.cz/advertising/v1.0/webhooks/ \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"data": [
{
"id": "string",
"event": "inquiry_created",
"configuration": {
"targetUrl": "https://example.com/hooks",
"headers": {
"Authorization": "Token 95abe511ff"
}
}
}
],
"paginationInfo": {
"page": 42.0,
"pages": 42.0
}
}