List all webhook endpoints
Returns a list of your webhook endpoints. The webhook endpoints are returned sorted by updated date, with the most recently updated webhook endpoints appearing first.
Query parameters
-
limit integer
A limit on the number of objects to be returned. Limit can range between
1
and100
, and the default is10
.Minimum value is
1
, maximum value is100
. Default value is10
.
GET /api/v1/webhook_endpoints
curl \
-X GET https://api.1099policy.com/api/v1/webhook_endpoints
Response examples (200)
[
{
"created": "2024-01-06T05:30:39.373Z",
"description": "string",
"id": "whe_KPGc5vEZdvoETu39BNwu2Z",
"secret": false,
"url": "https://example.com/my/webhook/endpoint"
}
]