Find all hardware with pending registration
curl --request POST \
--url https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"hardwareList": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enforcedMinFirmwareVersion": "<string>",
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"hwSupportDomain": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mac": "<string>",
"manufacturedAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otaDisabled": true,
"pendingRegistrationDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationToken": "AAAAAAAAAAAAAAAAAAAAAA",
"sdSize": 123,
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"hardwareWithPendingRegistrationInfoList": [
{
"hardware": {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enforcedMinFirmwareVersion": "<string>",
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"hwSupportDomain": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mac": "<string>",
"manufacturedAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otaDisabled": true,
"pendingRegistrationDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationToken": "AAAAAAAAAAAAAAAAAAAAAA",
"sdSize": 123,
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"hwUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationInfo": {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
]
}Org Webservice
Find all hardware with pending registration
Find all hardware for which a pending registrations exists
POST
/
api
/
org
/
findAllHardwareWithPendingRegistration
Find all hardware with pending registration
curl --request POST \
--url https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/org/findAllHardwareWithPendingRegistration")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"hardwareList": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enforcedMinFirmwareVersion": "<string>",
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"hwSupportDomain": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mac": "<string>",
"manufacturedAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otaDisabled": true,
"pendingRegistrationDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationToken": "AAAAAAAAAAAAAAAAAAAAAA",
"sdSize": 123,
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"hardwareWithPendingRegistrationInfoList": [
{
"hardware": {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enforcedMinFirmwareVersion": "<string>",
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"hwSupportDomain": "<string>",
"hwVariation": "RASPBERRY_PI_3",
"mac": "<string>",
"manufacturedAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"otaDisabled": true,
"pendingRegistrationDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationToken": "AAAAAAAAAAAAAAAAAAAAAA",
"sdSize": 123,
"serialNumber": "<string>",
"type": "BLE_TRACKER",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"hwUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pendingRegistrationInfo": {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
]
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
The body is of type object.
Last modified on August 22, 2026
⌘I