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": "82a06d30-5c69-4400-8686-f33db8d5baf5",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-12-12T16:22:27+00:00",
"updated_at": "2025-12-12T16:22:27+00:00",
"signing_secret": "9A1K19rRateNQNcNDWEm6QVR5UU18R7b7muS3qFzEYuPCYu5PHeXT1TDTvsg",
"last_outgoing_webhook_call_at": "2025-12-12T16:22:27+00:00"
}
]
}