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": [
{
"uuid": "b5ae663a-e93f-4694-9012-cae2fdc8315a",
"created_at": "2026-04-21T14:37:50+01:00",
"updated_at": "2026-04-21T14:37:50+01:00",
"signing_secret": "pYNvgy9Sl5RkbSKErcF7SUyHYkDqUoWMMf6atd6SxaTWa2hfIw70wJ1MGDKw",
"url": "https://api.example.com/webhooks",
"events": [
"account.deleted",
"circle.created"
],
"last_outgoing_webhook_call_at": "2026-04-21T14:37:50+01:00"
}
]
}