Skip to main content

List webhooks

GET
https://dev.breeze-technologies.de/api/v3/wildfires/webhooks

Retrieve all registered webhooks for your organization.

GET /api/v3/wildfires/webhooks
curl -X GET 'https://dev.breeze-technologies.de/api/v3/wildfires/webhooks' \
-d api_token=<YOUR_API_TOKEN>

Parameters

NameDescriptionTypeData typeRequired
api_tokenThe current user's API tokenquerystringYes
eventTypeFilter by event type (optional)querystringNo

Returns

{
"results": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://your-domain.com/webhooks/wildfire",
"eventType": "wildfire.event.created",
"isActive": true,
"createdAt": "2023-01-01T16:45:00.000Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"url": "https://your-domain.com/webhooks/wildfire-updates",
"eventType": "wildfire.event.updated",
"isActive": true,
"createdAt": "2023-01-02T10:30:00.000Z"
}
]
}