Getting the status of the job via polling
The preferred way of getting the job status is via callback.
Once the job is created, you need to find out if the job failed, if it was completed successfully or if it is still processing.
To get the job's information, send a GET
request to the
jobs endpoint by providing the id of the job you just
created.
The response you will get has the exact same structure as the response in Send a job with a remote file.
GET /v2/jobs/<your JOB ID here> HTTP/1.1
Host: api.api2convert.com
x-oc-api-key: <your API key here>
Cache-Control: no-cache
curl -X GET \
https://api.api2convert.com/v2/jobs/<your JOB ID here> \
-H 'cache-control: no-cache' \
-H 'x-oc-api-key: <your API key here>'