Skip to main content
GET
Retrieve Job

Authorizations

Authorization
string
header
required

Provide your QuedUp API key in the Authorization header as Bearer <api_key>.

Path Parameters

id
string
required

Unique identifier of the job.

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

A scheduled HTTP job managed by QuedUp.

id
string
required

Unique identifier for the job.

Example:

"550e8400-e29b-41d4-a716-446655440000"

name
string
required

Human-readable name for the job.

Example:

"Nightly customer sync"

url
string<uri>
required

Destination URL that QuedUp calls when the job runs.

Example:

"https://api.example.com/webhooks/customer-sync"

method
enum<string>
required

HTTP method used when QuedUp executes the job request.

Available options:
GET,
POST,
PUT,
PATCH,
DELETE
Example:

"POST"

headers
object
required

HTTP headers that will be sent with the outbound request.

Example:
body
string
required

Raw request body sent when the job executes.

Example:

"{\"source\":\"quedup\",\"action\":\"sync\"}"

schedule
string | null
required

Cron expression for recurring execution. Null for one-time jobs.

Example:

"0 0 * * *"

next_run_at
string<date-time> | null
required

Next scheduled execution time in ISO 8601 format.

Example:

"2026-03-09T00:00:00.000Z"

status
enum<string>
required

Current lifecycle state of the job.

Available options:
active,
paused,
failed,
completed,
running
Example:

"active"