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": "e12749f7-9629-446c-8449-9c6386c6459b",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-09-19T13:04:08+01:00",
"updated_at": "2025-09-19T13:04:08+01:00",
"signing_secret": "RUtVwn8Ii2ojNnqMOrWuTd9xz2Sowv2DpnCnt5rErWCQDGgAtduTFGfR9Ny2",
"last_outgoing_webhook_call_at": "2025-09-19T13:04:08+01:00"
}
]
}