Skip to main content
POST
/
api
/
component
/
findComponentShadowsByOwnerDevice
Retrieve component shadows by the specified owner device uuid
curl --request POST \
  --url https://api2.rhombussystems.com/api/component/findComponentShadowsByOwnerDevice \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'
{
  "componentShadows": [
    {
      "state": "CONNECTED",
      "stateUpdateEventTimestampMs": 123,
      "componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "createdAtMillis": 123,
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "type": "DoorReaderShadow",
      "updatedAtMillis": 123
    }
  ]
}

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
ownerDeviceUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

componentShadows
object[] | null