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": "41920f0b-b1f8-4523-a1ef-deef59631930",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2026-03-31T17:21:29+01:00",
"updated_at": "2026-03-31T17:21:29+01:00",
"signing_secret": "qOc7nIMeqAtIfnISSe1WI4siIjueq7IMQS7ShcQaKgapfbqD83MjZjryYZtU",
"last_outgoing_webhook_call_at": "2026-03-31T17:21:29+01:00"
}
]
}