Skip to main content
POST
/
api
/
camera
/
getVideoWalls
Get video walls
curl --request POST \
  --url https://api2.rhombussystems.com/api/camera/getVideoWalls \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '{}'
{
  "error": true,
  "errorMsg": "<string>",
  "userNameMap": {},
  "videoWalls": [
    {
      "deviceList": [
        "AAAAAAAAAAAAAAAAAAAAAA.v0"
      ],
      "displayName": "<string>",
      "numShares": 5,
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "othersCanEdit": true,
      "ownerUserUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "settings": {},
      "shared": true,
      "uuid": "AAAAAAAAAAAAAAAAAAAAAA"
    }
  ],
  "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 all video wall configurations.

Response

200 - application/json

OK

Response containing video wall configurations and associated user name mappings.

error
boolean | null
errorMsg
string | null
userNameMap
object

Mapping of user UUIDs to user names

videoWalls
object[] | null

List of video wall summary information

warningMsg
string | null