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": "016103cf-0b77-43cd-b861-ee6e0748bf06",
"created_at": "2026-07-10T13:50:22+01:00",
"updated_at": "2026-07-10T13:50:22+01:00",
"signing_secret": "rP9kWSa7CUJhpeh3yyDxlEhX41iB1sJij1hc5IYPpADoRg0XAP1GljY29dtE",
"url": "https://api.example.com/webhooks",
"events": [
"account.deleted",
"circle.created"
],
"last_outgoing_webhook_call_at": "2026-07-10T13:50:22+01:00"
}
]
}