🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/createSharedLiveVideoStream \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"doorbellCameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"streamType": "USER",
"vodEnabled": true
}
'{
"error": true,
"errorMsg": "<string>",
"sharedLiveM3U8StreamUrl": "https://example.com/live/m3u8/stream",
"sharedLiveVideoStreamUrl": "https://example.com/live/video/stream",
"sharedLiveVideoStreamUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Share an live video stream for a doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/createSharedLiveVideoStream \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"doorbellCameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"streamType": "USER",
"vodEnabled": true
}
'{
"error": true,
"errorMsg": "<string>",
"sharedLiveM3U8StreamUrl": "https://example.com/live/m3u8/stream",
"sharedLiveVideoStreamUrl": "https://example.com/live/video/stream",
"sharedLiveVideoStreamUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for creating a shared live video stream for a doorbell camera.
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
USER, ALARM_MONITORING, DICE, LUMEO, INFORMACAST, RAPIDSOS, UNKNOWN Enables recording of live footage to a VOD
true
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Add a expiration date for accessing the stream in seconds
86400
If given a schedule uuid, will hide the stream during the schedule instead and show it otherwise
false
If not provided, will be named 'Unnamed'
"Front Door Stream"
Add a password to allow access to your shared stream. If null or blank password is not set.
"mypassword123"
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
OK
Response object for creating a shared live video stream for a doorbell camera.
M3U8 URL for the shared live video stream
"https://example.com/live/m3u8/stream"
URL for the shared live video stream
"https://example.com/live/video/stream"
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?