Submitting a Job
When a job has been created, you can submit it to the
submit
REST endpoint. After the job is submitted, a validation of the input data is performed and the job is
put in the queue.
You can use the Document Management Java SDK to
submit the job. If you are not using the Document Management Java
SDK, POST the Job JSon to the submit
endpoint.
This code shows a successful response from the
/submit
endpoint:
{
"success": true,
"jobId": "sadf3245dsfg435"
}
This code shows the response if something goes wrong during the submission:
{
"success": false,
"errorMessage": "Something went wrong".
}