Kill job
Send a running job a termination request and remove it from the scheduler.
Send a running job a termination request and remove it from the scheduler.
Authorization
SymetryMLAuth HMAC-SHA256 signature-based authentication: requests are signed with
your secret key and sent with the Customer-ID, Sym-date,
Authorization, Content-MD5 and sym-version headers.
See SymetryML REST API Security
for the signature algorithm and a complete example.
In: header
Path Parameters
User/Customer identifier
The jobId returned when the job was started. Although this is a path string, it must represent an integer.
Response Body
application/json
application/json
application/json
curl -X DELETE "https://example.com/c1/jobs/string"{ "statusCode": 200, "statusString": "The job was sent a message to terminate and it was removed from the scheduler", "values": { "string": "terminate message sent:res0" }}{ "statusCode": 400, "statusString": "Invalid Job id, it should be a number", "values": {}}{ "statusCode": 500, "statusString": "The message to terminate the job failed", "values": {}}List jobs GET
List all jobs currently tracked for the calling user. Set the `all` query parameter to list every customer's jobs; this is restricted to the root user and fails otherwise.
Get job status GET
Get the status of one job by id. Returns `202` while the job is still running and `200` once it has finished, with a job-type-specific result attached in `values` alongside `jobinfo` (e.g. `values.smlInfo` for a `dsUpdate` job).