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}
Accept: application/json

Parameter Type Required Description
request string true ID of the application process request
Parameter Type Required Description
Accept application/json true  

Example response#

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

This command returns the following statuses:

This command returns the following results:

Related CLI command: getApplicationProcessRequestStatus.

Parent topic: applicationProcessRequest resource