Create a webhook subscription Run in API Explorer
Body
-
The URL of the webhook you would like Plannr to send events to.
-
The events the webhook subscription is subscribed to.
Values are
account.created,account.updated,account.deleted,account.annual-review-date-occurred,circle.created,circle.updated,circle.deleted,plan.created,plan.updated,plan.deleted,case.created,case.updated,case.deleted,task.created,task.updated,task.deleted,task.completed,fact-find.completed,form-submission.completed,bank-account.created,bank-account.updated,bank-account.deleted,bank-statement.created,bank-statement.updated,bank-statement.deleted,bank-transaction.created,bank-transaction.updated,bank-transaction.deleted,provider-statement.created,provider-statement.updated,provider-statement.deleted,transaction.created,transaction.updated, ortransaction.deleted.
curl \
--request POST 'https://api.plannrcrm.com/api/v2/webhook-subscriptions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"url":"https://api.example.com/webhooks","events":["account.deleted","circle.created"]}'
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"url": "https://api.example.com/webhooks",
"events": [
"account.deleted",
"circle.created"
]
}
{
"url": "https://api.example.com/webhooks",
"uuid": "783bc295-91ae-4e92-981d-019a5e8dc38f",
"events": [
"account.deleted",
"circle.created"
],
"created_at": "2026-03-12T14:28:25+00:00",
"updated_at": "2026-03-12T14:28:25+00:00",
"signing_secret": "lEdxPBXy8YW4TLbNxxCaxs1FTXw0cVcoOq0p9LmZHARp0ZiLh4uPlDcG5dAA",
"last_outgoing_webhook_call_at": "2026-03-12T14:28:25+00:00"
}