List delivery attempts

Recent finished-URL callback deliveries for one application — the same records the console's deliveries inspector shows.

Details

DescriptionLists the finished-URL callback deliveries for one application, newest first. When an application has a finishedUrl, Voylo POSTs each call's CDR there after hangup and records every attempt.
HTTP MethodGET
Endpoint URL/v1/applications/:id/deliveries
AuthorizationAPI key as a bearer token — Authorization: Bearer $VOYLO_API_KEY. The application must belong to the key's workspace, otherwise 404. See Authentication.

Request parameters

ParameterDescriptionLocationConstraintsDefault
idThe application's id.Pathuuid (required)
page1-based page number.Queryinteger ≥ 11
limitRows per page.Queryinteger 1–100 (capped)20

Request example

cURL
curl https://voylo.ai/v1/applications/8f3b1c2e-9a4d-4e7f-8b21-6c5d4e3f2a1b/deliveries \
  -H "Authorization: Bearer $VOYLO_API_KEY"

Success response example

200 OK
{
  "data": [
    {
      "id": "d1e2f3a4-b5c6-7d8e-9f01-2a3b4c5d6e7f",
      "eventType": "call.completed",
      "eventId": "evt_5c4d3e2f1a0b",
      "status": "delivered",
      "attempts": 1,
      "responseStatus": 200,
      "lastError": null,
      "nextAttemptAt": "2026-06-23T11:02:14.000Z",
      "createdAt": "2026-06-23T11:02:13.000Z",
      "deliveredAt": "2026-06-23T11:02:14.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "totalItems": 1,
    "totalPages": 1
  }
}

Description

  • dataarrayThe page of delivery records.
    • iduuidDelivery id.
    • eventTypestringThe event delivered, e.g. call.completed.
    • eventIdstringStable id for the source event.
    • statusenumpending · delivered · failed.
    • attemptsintegerDelivery attempts made so far.
    • responseStatusinteger | nullHTTP status your endpoint returned on the latest attempt.
    • lastErrorstring | nullError from the latest failed attempt, if any.
    • nextAttemptAttimestampWhen the next retry is scheduled.
    • createdAttimestampWhen the delivery was first queued.
    • deliveredAttimestamp | nullWhen it was successfully delivered.
  • paginationobjectPage metadata (page, limit, totalItems, totalPages).

Possible errors

ErrorDescription
400 Bad Requestid is not a valid UUID, or page/limit is invalid.
401 UnauthorizedAPI key is missing, invalid, or revoked.
403 ForbiddenThe key's role doesn't permit this action.
404 Not FoundNo application with that id in the key's workspace.
For the full payload and response body of a single attempt, see Get a delivery. To re-fire one with fresh enrichment, see Resend a delivery.