Update the configuration: Server.Reload

Reload MSE

Parameters

params: object


params.reason: string

No description


params.who: string

No description


Result

result: boolean


POST /api/

JSON
{
  "jsonrpc": "2.0",
  "method": "Server.Reload",
  "params": {
    "reason": "",
    "who": ""
  },
  "id": 123
}
cURL
Bash
curl -k --request POST \
    --url 'https://your-domain/api/' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <api-authorization-token>' \
    --data '{
  "jsonrpc": "2.0",
  "method": "Server.Reload",
  "params": {
    "reason": "",
    "who": ""
  },
  "id": 123
}'

200 OK

JSON
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 123
}

400 Bad Request

JSON
{
  "jsonrpc": "2.0",
  "error": {
    "code": -32601,
    "message": "Method not found"
  },
  "id": 123
}

500 Internal Server Error

Server error