/api/space/job-management/jobs/{id} (v1)

The following operations are supported on this resource:

  • GET - Get a single job
GET /jobs/{id}
(Deprecated)
Version 1

This API retrieves information about a job specified by job ID. The API returns the information in a JobInfo transfer object.

Sample Usage

GET /jobs/{id}


  • Parameters:
    Name Type URI Type Description Required
    id int Path The job ID for the job whose information will be retrieved. Y
  • Sample Output XML:
    <job uri="/api/space/job-management/jobs/524363">
       <id>524363</id>
       <name>Delete Script-524363</name>
       <percent>100.0</percent>
       <status>FAILURE</status>
       <jobType>Delete Script</jobType>
       <summary>Total requests: 1<br>Success count : 0<br></summary>
       <scheduledStartTime>Thu, 17 Mar 2011 05:29:00 GMT</scheduledStartTime>
       <user>super</user>
       <recurrence>Every 1 minute First occurrence: Thu, 17 Mar 2011 04:51:00 GMT Ends by: Thu, 17 Mar 2011 05:29:00 GMT</recurrence>
       <progress-update href="/api/space/job-management/jobs/524363/progress-update"/>
    </job>

  • Sample Output JSON:

    {
      "job": {
           "@uri": "/api/space/job-management/jobs/524363",
           "id":524363,
           "name":"Delete Script-524363",
           "percent":100,
           "status":"FAILURE",
           "jobType":"Delete Script",
           "summary": "Total requests: 1 Success count : 0",
           "scheduledStartTime": "Thu, 17 Mar 2011 05:29:00 GMT",
           "user":"super",
           "recurrence": "Every 1 minute First occurrence: Thu, 17 Mar 2011 04:51:00 GMT Ends by: Thu, 17 Mar 2011 05:29:00 GMT" ,
           "progress-update": {
                  "@href":"/api/space/job-management/jobs/524363/progress-update"
           }
      }

  • Access Control

    The following capabilities are required to access this API: DefaultRead

      For the current version of this API, refer to :
    • version 3