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": "2545c754-80a1-468e-a329-29375fddebf2",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2025-08-13T12:38:44+01:00",
"updated_at": "2025-08-13T12:38:44+01:00",
"signing_secret": "lCPPtoXWLO3nJ5DNNOPForMH5BRnIRbsYqtAH5gtppTCvUXfzFiWrgoserVE",
"last_outgoing_webhook_call_at": "2025-08-13T12:38:44+01:00"
}
]
}