Webhooks
List Webhook Subscriptions
Request
GET /webhooks
Request Curl Example
curl -X GET \
-H "Content-Type: application/json" \
-H "Authorization: Bearer d3d6763224e8f54ee5aeb08202b7eb101d97081876819cb48833d9f892185917" \
"https://api.statsignal.dev/v1/webhooks"
Response Example
Status: 200 Ok
{
"webhook": [
{
"uuid": "b7335e08-b376-42a4-a04f-5c871a1c75ac",
"topic": "monitors/status_change",
"url": "https://report.example.com/status_change",
"createdAt": "2021-05-09T04:38:42.09448Z",
"updatedAt": "2021-05-09T04:47:28.583677294Z"
},
{
"uuid": "e7b3dea9-a28b-4532-8cfe-281127769f30",
"topic": "monitors/delete",
"url": "https://report.example.com/delete",
"createdAt": "2021-05-03T06:02:36.167066Z",
"updatedAt": "2021-05-03T06:02:36.167066Z"
}
],
"paginator": {
"recordOffset": 0,
"pageSize": 10,
"pagesCount": 1,
"recordsCount": 2
}
}