DELETE /api/admin/v1/camera/{camera}/stream/{stream}
int camera, unique identifier of the camera
int
int stream, unique identifier of the stream
string url, RTSP URL that will be passed to the media server
string
string type, stream type
200 OK
OK
Successful response
{ "status": "ok" }
401 Unauthorized
Unauthorized
Authorization token is not provided or is invalid. Obtaining a token
402 Payment Required
Payment Required
License error
422 Unprocessable Entity
Unprocessable Entity
Returns a JSON object with an error. Validation
{ "message": "There will be no informative message here", "errors": { "any_key": [ "The reason for the error will be described here" ] } }
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" }'
$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);
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.