/webhooks/v1/webhook-endpoints/{endpointId}/deliveriesReturns a paginated list of webhook deliveries for a specific endpoint. Deliveries are retained for 7 days.
limitintMaximum number of items to return
startingAfterstringCursor for pagination. Pass the ID of the last item from the previous page.
statusstringFilter deliveries by status.
Success
{
"data": {
"items": [
{
"id": "del_abc123",
"networkId": "n_abc123",
"endpointId": "wh_abc123",
"eventId": "string",
"eventType": "ocpp.message",
"payload": {},
"status": "success",
"attempts": [
{
"status": "success",
"error": "string",
"timestamp": "2023-06-07T17:32:28Z"
}
],
"createdAt": "2023-06-07T17:32:28Z",
"lastAttemptAt": "2023-06-07T17:32:28Z"
}
],
"hasMore": true
}
}/webhooks/v1/webhook-endpoints/{endpointId}/deliveries/{deliveryId}/resendManually resends a webhook delivery to the endpoint. This creates a new delivery attempt with a fresh signature.
endpointIdstringrequired
The webhook endpoint ID
deliveryIdstringrequired
The delivery ID to resend
Delivery resent
{
"data": {
"id": "string",
"status": "success",
"statusCode": 123,
"error": "string",
"attempt": {
"status": "success",
"error": "string",
"timestamp": "2023-06-07T17:32:28Z"
}
}
}Was this page helpful?