🚧 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/org/createPendingRegistration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "RH123456789",
"wifiPsk": [
"aSDinaTvuI8gbWludGxpZnk="
],
"wifiSsid": "Office_WiFi"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Create a pending registration. Registration will be completed when the hardware establishes connectivity
curl --request POST \
--url https://api2.rhombussystems.com/api/org/createPendingRegistration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "RH123456789",
"wifiPsk": [
"aSDinaTvuI8gbWludGxpZnk="
],
"wifiSsid": "Office_WiFi"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for creating pending hardware registration.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Serial number of the hardware device
"RH123456789"
WiFi pre-shared key for the device
WiFi pre-shared key for the device
WiFi SSID for the device
"Office_WiFi"
Was this page helpful?