Request the status of an application process request

Will return both the status of the request (which indicates if it is still running) and the request result (which indicates the result of the process if it completed).

Request

GET https://{hostname}:{port}
  /cli/applicationProcessRequest/requestStatus?{parameters}
Table 1. Request parameters
Parameter Type Required Description
request string true ID of the application process request

Example response

{
  "status": "CLOSED",
  "result": "SUCCEEDED"
}

Related CLI command: getApplicationProcessRequestStatus.


Feedback