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": [
{
"url": "https://api.example.com/webhooks",
"uuid": "4a9538a5-97e3-4cf7-9207-928ef6462f9e",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2026-01-25T17:42:56+00:00",
"updated_at": "2026-01-25T17:42:56+00:00",
"signing_secret": "hN1mU20ArXXo60GG34d5ClUwPxDk3QcJjG4jDYZOSC5fF79bwHQVlfEWBVwU",
"last_outgoing_webhook_call_at": "2026-01-25T17:42:56+00:00"
}
]
}