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": "e0da1e50-5ba7-4d75-a3c3-b605ff0badb8",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2026-03-11T10:08:35+00:00",
"updated_at": "2026-03-11T10:08:35+00:00",
"signing_secret": "Yd7kkH3n3UxOVvGH6YIMqhGA5klB476maDUFUk2pufSSZtkuQm2UkZNdAvYh",
"last_outgoing_webhook_call_at": "2026-03-11T10:08:35+00:00"
}
]
}