Server restart
Documentation for Server restart
Read time 1 minute
Restart the game server identified by
<serverid>
https://api.multiplay.co.uk/cfp/v1/server/<serverid>/restart
METHOD |
GET |
Request parameters
PARAMETER | DESCRIPTION | OPTIONAL |
serverid | The
| No |
Response fields
Field | Type | Description | Optional |
---|---|---|---|
action | string | Action performed on the server. Will be 'restart' for this endpoint | No |
success | boolean | Boolean indicating whether the action was successful | No |
server | object | Server object containing information about the server | No |
Server object
Field | Type | Description | Optional |
---|---|---|---|
serverid | integer | ID of the server | No |
Example request
curl --location --request GET 'https://api.multiplay.co.uk/cfp/v1/server/<serverid>/restart' \ --header 'Authorization: Basic YOUR_AUTH_CREDENTIALS'
Example response
{ "action": "restart", "success": true, "server": { "serverid": <serverid> } }