Skip to main content
GET
/
jobs
List Jobs
curl --request GET \
  --url https://api.quedup.dev/jobs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "body": "<string>",
      "headers": {},
      "id": "job_xxx",
      "method": "POST",
      "name": "Job",
      "next_run_at": "2023-11-07T05:31:56Z",
      "schedule": "0 12 * * *",
      "status": "active",
      "url": "https://example.com"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Cursor

Response

OK

ListJob schema

data
object[]
has_more
boolean
next_cursor
string