List all jobs
GET/jobs/
List all jobs and their statuses.
Responses
- 200
Successful response to the listJobs request
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
Array [
]
Unique ID of the job.
The job ID can be used to control the job, e.g. start it, as well as identify corresponding messages in the service log file. Therefore it is highly recommended to log the job ID in the client log file.
status
object
required
Possible values: [creating
, pending
, processing
, completed
]
A message describing the job's status in more detail. Example: "Converting 'input.pdf' to PDF/A."
[
{
"jobId": "string",
"status": {
"code": "creating",
"message": "string"
}
}
]
- Schema
- Example (from schema)
Schema
Array [
]
Unique ID of the job.
The job ID can be used to control the job, e.g. start it, as well as identify corresponding messages in the service log file. Therefore it is highly recommended to log the job ID in the client log file.
status
object
required
Possible values: [creating
, pending
, processing
, completed
]
A message describing the job's status in more detail. Example: "Converting 'input.pdf' to PDF/A."
<0>
<jobId>string</jobId>
<status>
<code>creating</code>
<message>string</message>
</status>
</0>