Skip to main content
POST
/
workflows
/
{workflow_id}
/
jobs
/
schedule
Schedule Job
curl --request POST \
  --url https://api.example.com/workflows/{workflow_id}/jobs/schedule
{
  "204": {},
  "400": {},
  "401": {},
  "404": {}
}
This endpoint schedules a job with a manual trigger. The job will be queued to run immediately.

Path Parameters

workflow_id
string
required
The unique identifier of the workflow

Response

Returns HTTP 204 No Content on success.

Status Codes

204
No Content
Job successfully scheduled
400
Bad Request
Invalid workflow ID or missing required parameters
401
Unauthorized
Authentication required
404
Not Found
Workflow not found

Examples

curl -X POST 'https://api.chronoverse.dev/workflows/wf_abc123/jobs/schedule' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
The scheduled job will have trigger type MANUAL and will be executed as soon as resources are available.

Build docs developers (and LLMs) love