Endpoints

Delivery attempts

The full delivery history for one captured request — automatic retries and manual replays alike, newest first (up to 100). An attempt with no completion is labelled Interrupted: a worker died mid-send and the delivery was retried.

GET
/api/v1/endpoints/{endpointId}/requests/{requestId}/attempts
AuthorizationBearer <token>

API key in the Authorization header: Authorization: Bearer wv_live_…. Keys are created on the API keys page in the app, shown once, and scoped to your workspace. X-Api-Key: wv_live_… is accepted as a fallback for tools that can't set Authorization.

In: header

Path Parameters

endpointId*string

The endpoint id (also the capture token in its URL).

Formatuuid
requestId*integer

The captured request id.

Formatint64

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

[
  {
    "id": 0,
    "attemptNumber": 0,
    "url": "string",
    "startedAt": "2019-08-24T14:15:22Z",
    "completedAt": "2019-08-24T14:15:22Z",
    "state": "string",
    "statusCode": 0,
    "error": "string",
    "durationMs": 0
  }
]
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "traceId": "string"
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "traceId": "string"
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "traceId": "string"
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "traceId": "string"
}

On this page