Stop capture of secondary streams: Server.Release

Release stream on list of hostnames

Parameters

params: array


params[]: string

No description


Result

result: any


POST /api/

JSON
{
  "jsonrpc": "2.0",
  "method": "Server.Release",
  "params": [
    "hostname"
  ],
  "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.Release",
  "params": [
    "hostname"
  ],
  "id": 123
}'

200 OK

JSON
{
  "jsonrpc": "2.0",
  "result": {
    "hostname": 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