Skip to main content
Skip table of contents

Deleting a stream

Deleting a stream

DELETE /api/admin/v1/camera/{camera}/stream/{stream}

Method parameters

int camera, unique identifier of the camera


int stream, unique identifier of the stream


string url, RTSP URL that will be passed to the media server


string type, stream type

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}' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "camera": 0,
    "stream": 0,
    "url": "string",
    "type": "string"
}'
PHP
PHP
$data = array (
  'camera' => 0,
  'stream' => 0,
  'url' => 'string',
  'type' => 'string',
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'DELETE',
		'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}', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.