GET /common/app/{app_id}/status
Gets the status of a given app.
Request
GET http://<unravel-host>
:3000/api/v1/common/app/{app_id}
/status?clusterUid={clusteruid}
Path parameters
Name | Description |
---|---|
| App ID. |
Query parameters
Name | Description |
---|---|
| Cluster unique ID. |
Response body
Name | Type | Description |
---|---|---|
| string | The app's current status. |
| string | The app's status message. |
Examples
Request:
curl -X GET "http://myserver.com:3000/api/v1/common/app/abcdef_20190228180000_db0d2b83-849f-45d2-bd64-e9224e4b4388-u_SOyF/status?clusterUid=default" -H "accept: application/json" -H "Authorization: JWT token
"
Response:
{ "status": "Success", "message": "The app status of parwinder_20190228180000_db0d2b83-849f-45d2-bd64-e9224e4b4388-u_SOyF is Success" }