Get all calls made to a given webhook subscription Run in API Explorer
Ask AI
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": "c2e27558-f122-4ab3-baf7-02cc0c895e53",
"created_at": "2026-04-21T20:51:44+01:00",
"updated_at": "2026-04-21T20:51:44+01:00",
"request_body": {
"event": "account.created",
"sent_at": "2026-04-21T20:51:44+01:00",
"data": []
},
"response_status": 200,
"response_body": {
"message": "ok"
},
"successful": true,
"fatal_error": "Unable to connect",
"is_retry": false
}
]
}