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": "36272897-a5eb-43c9-b2b3-482e13ddd4cc",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-07-24T10:37:53+01:00",
"updated_at": "2025-07-24T10:37:53+01:00",
"signing_secret": "I5E3uxF2CSO26oMhWy6O6rrZO2R88SZ12JxIyHKKF0DhNj4Li11qwBme7cNQ",
"last_outgoing_webhook_call_at": "2025-07-24T10:37:53+01:00"
}
]
}