/management/wls/{version}/jobs/server/id/{job-id}

The resource supports the following methods:

GET Method

The GET method on this resource returns information about a specific server lifecycle job.

Roles

Administrator, Deployer, Operator, Monitor

Response Body

The response body returned includes a ServerJob entity.

This method can return the following links:

  • uri=/management/wls/{version}/jobs/server rel=parent

Response Codes

This method returns one of the Standard HTTP Status Codes.

Example

Example 1   Getting Server Job Information

This example uses the GET method to obtain information about a server lifecycle job.

Example Request

curl -v \
--user username:password \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/wls/latest/jobs/server/id/Cluster-0-Server-1:_8_start

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "parent",
        "uri": "http:\/\/localhost:7001\/management\/wls\/latest\/jobs\/server"
    }],
    "item": {
        "operation": "start",
        "status": "in progress",
        "beginTime": 1390587038967,
        "name": "_8_start",
        "id": "Cluster-0-Server-1:_8_start",
        "type": "server",
        "description": "Starting Cluster-0-Server-1 server ...",
        "serverName": "Cluster-0-Server-1"
    }
}