Skip to main content
POST
/
api
/
camera
/
getRawHttpStreams
Get camera raw HTTP streams
curl --request POST \
  --url https://api2.rhombussystems.com/api/camera/getRawHttpStreams \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0"
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "rawHttpStreams": [
    {
      "audioPath": "<string>",
      "createdAtMs": 123,
      "createdBy": "<string>",
      "customPathPart": "<string>",
      "deviceType": "BLE_TRACKER",
      "deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
      "lanAudioUrl": "<string>",
      "lanVideoLowResUrl": "<string>",
      "lanVideoUrl": "<string>",
      "name": "<string>",
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "streamType": "USER",
      "videoLowResPath": "<string>",
      "videoPath": "<string>"
    }
  ],
  "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 retrieve raw HTTP streams for a device.

deviceUuid
string<DeviceFacetUuid> | null

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

Response

200 - application/json

OK

Response containing raw HTTP streams for a device.

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

List of raw HTTP streams

warningMsg
string | null