Skip to main content
GET
/
jobs
/
{id}
Retrieve Job
curl --request GET \
  --url https://api.quedup.dev/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

OK

Job schema

body
string
headers
object
id
string
Example:

"job_xxx"

method
string
Example:

"POST"

name
string
Example:

"Job"

next_run_at
string<date-time> | null

The next time the Job is scheduled to run. If empty, the Job is complete=.

schedule
string | null

The CRON schedule for the Job

Example:

"0 12 * * *"

status
string

A Job can be active, paused, failed or completed

Example:

"active"

url
string
Example:

"https://example.com"