Get all webhook subscriptions Run in API Explorer
Ask AI
GET
/api/v2/webhook-subscriptions
curl \
--request GET 'https://api.plannrcrm.com/api/v2/webhook-subscriptions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "3db8027a-8972-4c9d-8692-30a707352e6e",
"created_at": "2026-05-29T09:46:25+01:00",
"updated_at": "2026-05-29T09:46:25+01:00",
"signing_secret": "8eine4ujwX6PocPnZ9s5JeFa05ZN2HXeShcVuRQoAXcNUhL4aWTCecoS3L0J",
"url": "https://api.example.com/webhooks",
"events": [
"account.deleted",
"circle.created"
],
"last_outgoing_webhook_call_at": "2026-05-29T09:46:25+01:00"
}
]
}