Skip to main content
POST
/
api
/
camera
/
findSharedLiveVideoStreams
Find camera shared live video streams
curl --request POST \
  --url https://api2.rhombussystems.com/api/camera/findSharedLiveVideoStreams \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0"
}
'
{
  "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

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request to find shared live video streams for a camera.

cameraUuid
string<DeviceFacetUuid> | null

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

Response

200 - application/json

OK

Response containing shared live video streams.

error
boolean | null
errorMsg
string | null
sharedLiveVideoStreams
object[] | null

List of shared live video streams

warningMsg
string | null