Get all webhook subscriptions Run in API Explorer
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": [
{
"url": "https://api.example.com/webhooks",
"uuid": "40777cf0-c902-438d-b9a6-b86afa2e558e",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-11-19T13:56:59+00:00",
"updated_at": "2025-11-19T13:56:59+00:00",
"signing_secret": "7UlivctZ07GEmFxf7KiXl4SPjttnDxo65smKycGnjXwvNQZvrEsahtd0u8Oy",
"last_outgoing_webhook_call_at": "2025-11-19T13:56:59+00:00"
}
]
}