Skip to main content
Skip table of contents

Enable stream

Enable stream

Enabling a stream. Sends a request to the media server instructing it to enable the stream. The stream will change its status only after the media servers are polled again.

POST /api/admin/v1/camera/{camera}/stream/{stream}/enable

Method parameters

int camera, unique identifier of the camera


int stream, unique identifier of the stream

200 OK

Successful response

JSON
{
    "status": "ok"
}

401 Unauthorized

Authorization token is not provided or is invalid. Obtaining a token

402 Payment Required

License error

422 Unprocessable Entity

Returns a JSON object with an error. Validation

JSON
{
    "message": "There will be no informative message here",
    "errors": {
        "any_key": [
            "The reason for the error will be described here"
        ]
    }
}
cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/camera/{camera}/stream/{stream}/enable' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "camera": 0,
    "stream": 0
}'
PHP
PHP
$data = array (
  'camera' => 0,
  'stream' => 0,
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'POST',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/camera/{camera}/stream/{stream}/enable', false, $context);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.