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": "cccaf2ab-9ea9-469d-b586-a8099576f90b",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-12-24T11:03:00+00:00",
"updated_at": "2025-12-24T11:03:00+00:00",
"signing_secret": "gxZq6xPDIaZJHJ5RV3Z6ET6dDDGj4szyTfA1gubtVssv093aNb05MGSCKL48",
"last_outgoing_webhook_call_at": "2025-12-24T11:03:00+00:00"
}
]
}