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: {contentType}
| Parameter | Type | Required | Description |
|---|---|---|---|
| request | string | true | ID of the application process request |
| Parameter | Type | Required | Description |
|---|---|---|---|
| Accept |
|
true |
Example response
{
"status": "CLOSED",
"result": "SUCCEEDED"
}This command returns the following statuses:
CANCELINGCLOSEDCOMPENSATINGEXECUTINGFAULTEDFAULTINGINITIALIZEDPENDINGUNINITIALIZED
This command returns the following results:
APPROVAL REJECTEDAWAITING APPROVALCANCELEDCOMPENSATEDFAILED TO STARTFAULTEDNONESCHEDULED FOR FUTURESUCCEEDEDUNINITIALIZED
Related CLI command: getApplicationProcessRequestStatus.