This endpoint retrieves details of webhook events that failed within a specified time range, up to a maximum window of 1 day, going back as far as the last 30 days
A failed webhook event is defined as an event where Carriyo received a non-200
response from the client's endpoint.
Use start_date
and end_date
in ISO 8601 format (e.g., 2023-03-22T10:15:30.123Z
) to specify the time range for retrieval.
Success Response
Error Response
{- "original_failure_count": 10,
- "current_failure_count": 1,
- "failed_events": [
- {
- "event_id": "e1234-5678-abcd",
- "entity_id": "S123456790",
- "trigger": "booked"
}
]
}