ApiManagementV1WorkspacesWorkspaceidEndpointsEndpointidDeliveries

List an endpoint's deliveries (paginated, newest-first)

Returns deliveries for a single endpoint, newest first. Use the `cursor` from the previous response's `nextCursor` to fetch the next page. Data retention is 7 days — older deliveries are not returned.

GET
/management/v1/workspaces/{workspaceId}/endpoints/{endpointId}/deliveries
AuthorizationBearer <token>

Management token (nhm_...)

In: header

Path Parameters

workspaceIdstring
endpointIdstring

Query Parameters

limit?string

Page size (default 50, max 100)

cursor?string

Opaque, encrypted cursor from the previous response's nextCursor. Treat it as a black-box token — do not parse, decode, or modify it. Tampering or modification will be rejected with 400 invalid_cursor.

status?string

Filter by delivery status

Value in"pending" | "delivering" | "delivered" | "scheduled_retry" | "failed" | "dead_letter"

Response Body

curl -X GET "https://loading/management/v1/workspaces/string/endpoints/string/deliveries?limit=string&cursor=string&status=pending"
{
  "deliveries": [
    {
      "id": "string",
      "idempotencyKey": "string",
      "endpointId": "string",
      "status": "string",
      "totalAttempts": 0,
      "firstAttemptAt": "2019-08-24T14:15:22Z",
      "deliveredAt": "2019-08-24T14:15:22Z",
      "nextRetryAt": "2019-08-24T14:15:22Z",
      "hasPayload": true,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "nextCursor": "string"
}
{}
{}
{}