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": "8983b78c-f548-4380-b6e9-d7fb9a71cbfb",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-10-30T16:14:02+00:00",
"updated_at": "2025-10-30T16:14:02+00:00",
"signing_secret": "53Gcygx70WSPpLCJZX1ZghkNTLEpvjLxFsFje41htjYM72bJjlOd468Y5uiO",
"last_outgoing_webhook_call_at": "2025-10-30T16:14:02+00:00"
}
]
}