Home

/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
Path parameters

Name

Description

app_id

App ID.

Query parameters

None.

Response body

Name

Type

Description

status

string

The app's current status.

message

string

The app's status message.

Examples

Request:

curl -X GET "http://myserver.com:3000/api/v1/common/app/parwinder_20190228180000_db0d2b83-849f-45d2-bd64-e9224e4b4388-u_SOyF/status" -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"
}