Resuming Jobs

Use the following method to resume any or all paused jobs in the scheduler. Resuming a job means that any defined trigger in the schedule that occurs after the time it is resumed will cause the report to run again. Missed schedule triggers that occur before the job is resumed are never run.

Method

URL

POST

http://<host>:<port>/jasperserver[-pro]/rest_v2/jobs/resume/

Content-Type

Content

application/xml

A well-formed XML jobIdList descriptor that specifies the IDs of the jobs. See example below. If the body of the request is empty, or the list is empty, all paused jobs in the scheduler will resume.

Return Value on Success

Typical Return Values on Failure

200 OK

 

The XML format of the jobIdList descriptor in the request body is identical to the one used when pausing jobs:

<jobIdList>
  <jobId>1236</jobId>
  <jobId>1237</jobId>
</jobIdList>
Feedback
randomness