🚧 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/feature/getDeviceFeaturesList \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
]
}
'{
"error": true,
"errorMsg": "<string>",
"featureList": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"featureMap": {}
}
],
"warningMsg": "<string>"
}Get enabled features for all devices in an org
curl --request POST \
--url https://api2.rhombussystems.com/api/feature/getDeviceFeaturesList \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
]
}
'{
"error": true,
"errorMsg": "<string>",
"featureList": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"featureMap": {}
}
],
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for retrieving enabled features for multiple devices in an organization.
List of device UUIDs to retrieve features for
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Was this page helpful?