Find all shared live video streams
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams"
payload = {}
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({})
};
fetch('https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams', 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/camera/findAllSharedLiveVideoStreams")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": true,
"errorMsg": "<string>",
"sharedLiveVideoStreams": [
{
"audioDeviceHwVar": "RASPBERRY_PI_3",
"audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"audioPushToTalkEnabled": true,
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"deviceHwVar": "RASPBERRY_PI_3",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"expirationTime": 123,
"hideOverlay": true,
"invertSchedule": true,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"passwordProtected": true,
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sharedLiveM3U8StreamUrl": "<string>",
"sharedLiveVideoStreamUrl": "<string>",
"sharedWithMonitoringService": true,
"ssoProtected": true,
"streamType": "USER",
"timestampMs": 123,
"unscheduledMessage": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"vodEnabled": true
}
],
"warningMsg": "<string>"
}Camera Webservice
Find all shared live video streams
Get list of all shared live streams
POST
/
api
/
camera
/
findAllSharedLiveVideoStreams
Find all shared live video streams
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams"
payload = {}
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({})
};
fetch('https://api2.rhombussystems.com/api/camera/findAllSharedLiveVideoStreams', 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/camera/findAllSharedLiveVideoStreams")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"error": true,
"errorMsg": "<string>",
"sharedLiveVideoStreams": [
{
"audioDeviceHwVar": "RASPBERRY_PI_3",
"audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"audioPushToTalkEnabled": true,
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"deviceHwVar": "RASPBERRY_PI_3",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"expirationTime": 123,
"hideOverlay": true,
"invertSchedule": true,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"passwordProtected": true,
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sharedLiveM3U8StreamUrl": "<string>",
"sharedLiveVideoStreamUrl": "<string>",
"sharedWithMonitoringService": true,
"ssoProtected": true,
"streamType": "USER",
"timestampMs": 123,
"unscheduledMessage": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"vodEnabled": true
}
],
"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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to find all shared live video streams.
Last modified on September 6, 2026