Few actions are available before encoding Job goes into the inspect stage.
-
Cancel a job
In case of misoperation when creating a job (e.g. Selected an incorrect encoding configuration, picked the wrong file, ...), BlendVision Encoder provides the to cancel it.
Please be noticed that once the Job goes into Encode Stage, it will incur encoding fee thus cancellation is not allowed after then.
curl -X DELETE 'https://api.az.blendvision.io/api/v1/job/{{jobID}}' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: {{apiKey}}'
❗Notice: The cancellation action is permanent and the canceled Job cannot be retriggered in the future.
-
Prioritize a job
According to the explanation in Smart Queue and Priority Queue, You can use Priority Queue to speed up the encoding process.
Although you need to specify the Queue type when creating a new Job, you can still prioritize the Job to Priority Queue if it was originally adopting Smart Queue before the job goes into Encode Stage.
curl -X POST 'https://api.az.blendvision.io/api/v1/job/{{jobID}}/prioritize' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: {{apiKey}}'
❗Notice: Job could only be moved from Smart Queue to Priority Queue. On the contrary, the Prioritized Job is not possible to go back to Smart Queue anymore.