Get details of all jobs

post

/services/rest/v1/jobs

Gets details of all the scheduled jobs.

Request

Supported Media Types
Body ()
Job Filter Properties
Root Schema : JobFilterProperties
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Returns the details of all scheduled jobs in JSON format.
Body ()
Root Schema : schema
Back to Top

Examples

The following example shows how to get the list of scheduled jobs owned by a user by submitting a POST request on the REST resource using cURL.This command gets the list of all the scheduled jobs with the job owner name exactly matching or containing the owner name specified in the command.

curl -i \
     --header 'Authorization: Bearer <token>' \
     --header 'Content-Type: application/json' \
     --request POST -d
         'https://hostname/xmlpserver/services/rest/v1/jobs?beginIdx=1'
Back to Top