Skip to main content
GET
/
jobs
/
{id}
/
run
List Job Runs
curl --request GET \
  --url https://api.quedup.dev/jobs/{id}/run \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "attempt": 123,
      "completed_at": "2023-11-07T05:31:56Z",
      "duration_ms": 123,
      "id": "<string>",
      "response_body": "<string>",
      "response_headers": "<string>",
      "response_status_code": 123,
      "run_at": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "target_run_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

cursor
string

Cursor

Response

OK

ListJobRunResponse schema

data
object[]
has_more
boolean
next_cursor
integer<int64>