propeller logo

Create Job

POST
/jobs

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:7070/jobs" \  -H "Content-Type: application/json" \  -d '{    "name": "batch-process",    "execution_mode": "sequential",    "tasks": [      {        "name": "step-1",        "image_url": "docker.io/myorg/step1:v1"      },      {        "name": "step-2",        "image_url": "docker.io/myorg/step2:v1"      }    ]  }'
Empty