🚧 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/partner/getClientDevices \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"devices": [
{
"device": {
"createdAtMillis": 123,
"customData": "<string>",
"deleted": true,
"description": "<string>",
"facetNameMap": {},
"hardwareId": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mummified": true,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pending": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"unregisteredEmailSent": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"partnerControlledHardware": true,
"reassignable": true
}
]
}Retrieve a list of devices for a specific client.
curl --request POST \
--url https://api2.rhombussystems.com/api/partner/getClientDevices \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"devices": [
{
"device": {
"createdAtMillis": 123,
"customData": "<string>",
"deleted": true,
"description": "<string>",
"facetNameMap": {},
"hardwareId": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mummified": true,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pending": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"unregisteredEmailSent": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"partnerControlledHardware": true,
"reassignable": true
}
]
}Your API key for Rhombus.
Authentication scheme indicator ("partner-api-token").
17Request object for getting devices for a specific client organization.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
OK
Response object containing devices for a specific client organization.
List of devices with partner-specific details
Show child attributes
Was this page helpful?