Skip to main content
POST
/
servers
/
{serverId}
/
start
Start Server
curl --request POST \
  --url https://api.mcmp.app/v1/servers/{serverId}/start \
  --header 'Authorization: Bearer <token>'
{
  "status": "starting",
  "message": "Server is starting up"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

serverId
string
required

The unique identifier of the server

Response

200 - application/json

Server start initiated

status
string
Example:

"starting"

message
string
Example:

"Server is starting up"