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": "2baeb858-80e5-4be8-96ab-bd2ff756aecc",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-09-02T10:29:03+01:00",
"updated_at": "2025-09-02T10:29:03+01:00",
"signing_secret": "T3cSOZkcmy1YnLL4MU7XeYFQS3qb3jOFS6RLgVHKX6raiSkkqMOBKKzVMhtv",
"last_outgoing_webhook_call_at": "2025-09-02T10:29:03+01:00"
}
]
}