Creates a new job.
run_at nor schedule are provided, the job runs immediately.run_at is provided, the job runs once at the specified time.schedule is provided, the job runs on the specified cron schedule.schedule takes precedence.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body for job.CreateJobRequest
CreateJobRequest schema
The HTTP method used when sending the request.
"POST"
A unique name for the job. Used for identification.
"Database Backup"
The URL the job will send a request to.
"https://example.com"
Optional request body to include when sending the job.
Optional key/value pairs of HTTP headers to include in the request.
A timestamp for running the job once at a specific time. Must be in RFC3339 format, e.g. 2025-09-24T17:00:00Z. Ignored if schedule is provided.
A cron expression for running the job on a recurring schedule. If provided, it takes precedence over run_at.
OK
Job schema
"job_xxx"
"POST"
"Job"
The next time the Job is scheduled to run. If empty, the Job is complete=.
The CRON schedule for the Job
"0 12 * * *"
A Job can be active, paused, failed or completed
"active"
"https://example.com"