This section describes the API for accessing the organisation's webhooks. This will include all of the webhooks of the organisation that the authenticated user has access to.
This API route will return a paginated list of all of the webhooks that belong to the organisation.
This endpoint is NOT searchable. This resource requires authorisation. Please read the documentation on authorisation.
GET https://api.dailys.nz/api/v1/webhooks
Parameter | Type | Description |
---|---|---|
page | integer | The page number requested; used for pagination. |
limit | integer | The number of resrouces per page; maximum: 100 minimum: 1 |
{
"current_page": 1,
"data": [
{
"id": 1,
"uri": "http://example.com/endpoint",
"events": [
"categories.deleted",
"categories.created",
"categories.updated"
],
"created_at": "2000-01-01 00:00:00",
"updated_at": "2000-01-01 00:00:00"
}
],
"from": 1,
"last_page": 1,
"next_page_url": null,
"path": "https://api.dailys.nz/api/v1/webhooks",
"per_page": 15,
"prev_page_url": null,
"to": 1,
"total": 1
}