Supercheck LogoSupercheck
Jobs API

Run a job immediately

Execute a job immediately by providing its ID. The job's configured tests will be run.

POST
/api/jobs/run

Authorization

bearerAuth
AuthorizationBearer <token>

CLI token (sck_live_*) for full API access, or trigger key (sck_trigger_* / legacy job_*) for job trigger endpoint only.

In: header

Request Body

application/json

jobId*string

ID of the job to run

Formatuuid

Response Body

application/json

application/json

curl -X POST "https://demo.supercheck.dev/api/jobs/run" \  -H "Content-Type: application/json" \  -d '{    "jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39"  }'
{
  "runId": "78c33d18-170c-44d3-a227-b3194f134f73",
  "jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39",
  "status": "string",
  "message": "string"
}
{
  "error": "Unauthorized"
}