curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"rawStreamName": "my_raw_stream"
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"rawStreamName": "my_raw_stream"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', rawStreamName: 'my_raw_stream'})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"rawStreamName\": \"my_raw_stream\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"lanAudioUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/audio",
"lanVideoLowResUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/video_low",
"lanVideoUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/video",
"warningMsg": "<string>"
}Create a raw HTTP stream for a doorbell camera
Create a raw HTTP stream for a doorbell camera.
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"rawStreamName": "my_raw_stream"
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"rawStreamName": "my_raw_stream"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', rawStreamName: 'my_raw_stream'})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/doorbellcamera/createRawHttpStream")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"rawStreamName\": \"my_raw_stream\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"lanAudioUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/audio",
"lanVideoLowResUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/video_low",
"lanVideoUrl": "http://ip-192-168-0-1.lan.rhombussystems.com/video",
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
api-token, api, partner-api-token, partner-api Body
Request to create a raw HTTP stream for a device.
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Name for the raw stream
"my_raw_stream"
USER, ALARM_MONITORING, DICE, LUMEO, INFORMACAST, RAPIDSOS, UNKNOWN Response
OK
Response containing raw HTTP stream URLs for a device.
LAN audio URL for the raw stream
"http://ip-192-168-0-1.lan.rhombussystems.com/audio"
LAN low resolution video URL for the raw stream
"http://ip-192-168-0-1.lan.rhombussystems.com/video_low"
LAN video URL for the raw stream
"http://ip-192-168-0-1.lan.rhombussystems.com/video"