Last updated 1 month ago
Was this helpful?
Abort running job (an incomplete job that is yet to start will be deleted)
The id associated with your job.
POST /v1/customer/jobs/{jobId}/abort HTTP/1.1 Host: api.bytenite.com Authorization: YOUR_API_KEY Accept: */*
A successful response.
{ "ok": true, "requestId": "text", "message": "text", "error": { "code": 1, "message": "text", "description": "text" } }
Delete a job
DELETE /v1/customer/jobs/{jobId} HTTP/1.1 Host: api.bytenite.com Authorization: YOUR_API_KEY Accept: */*
Run a job
Job execution preferences.
POST /v1/customer/jobs/{jobId}/run HTTP/1.1 Host: api.bytenite.com Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 60 { "config": { "taskTimeout": 1, "jobTimeout": 1, "isTestJob": true } }