Skip to main content
POST
/
apps
/
{app_id}
/
status
Update app status (run/stop/restart)
curl --request POST \
  --url https://shardcloud.app/api/apps/{app_id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "run"
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string<uuid>
required

Body

application/json
status
enum<string>
required
Available options:
run,
stop,
restart

Response

Status updated successfully

message
string
I