Get all calls made to a given webhook subscription
Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter by a comma separated list of events.
-
Filter by a comma separated list of response status codes.
-
Filter successful webhook calls.
-
Field to sort by. Valid fields are [created_at, updated_at, response_status]. Negative sign to denote DESC. Defaults to '-created_at'.
GET
/api/v2/webhook-subscriptions/{webhookSubscription_uuid}/calls
curl \
--request GET 'https://api.plannrcrm.com/api/v2/webhook-subscriptions/6ff8f7f6-1eb3-3525-be4a-3932c805afed/calls' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "1c686d16-6c0c-45ac-b693-d12d9db28500",
"is_retry": false,
"created_at": "2025-07-03T15:26:37+01:00",
"successful": true,
"updated_at": "2025-07-03T15:26:37+01:00",
"fatal_error": "Unable to connect",
"request_body": {
"data": [],
"event": "account.created",
"sent_at": "2025-07-03T15:26:37+01:00"
},
"response_body": {
"message": "ok"
},
"response_status": 200
}
]
}