HTTP GET for /service/{service-id}/status
When the NSM client user requests the /service/{service-id}/status
URI
using the GET
method, a description of the status
of the service that matches the service ID entered is returned.
Input parameters
{service-id}
Available HTTP Headers
Accept: application/json
Accept: text/xml
Sample request
http://www.example.com:16310/nsm/service/4/status
Sample response
XML<service id="312" referenceId="312" createdByUser="administrator"
createDate="2012-10-26 10:59:19.433 GMT+00:00"
lastUpdatedDate="2012-11-05 15:56:54.285 GMT+00:00" serviceWorkKey="36517">
<status>Success</status>
</service>
JSON{
"id": 312,
"referenceId": "312",
"status": "SUCCESS",
"createDate": 1351249159433,
"createdByUser": "administrator",
"lastUpdatedDate": 1352131014285,
"serviceWorkKey": 36517
}