Update Rhombus key settings for user
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"bypassSaml": true,
"maxMobileCredsAllowed": 123,
"remoteUnlockEnabled": true,
"rhombusKeyAccessEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser"
payload = {
"bypassSaml": True,
"maxMobileCredsAllowed": 123,
"remoteUnlockEnabled": True,
"rhombusKeyAccessEnabled": True,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
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({
bypassSaml: true,
maxMobileCredsAllowed: 123,
remoteUnlockEnabled: true,
rhombusKeyAccessEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser', 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/user/updateRhombusKeySettingsForUser")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"bypassSaml\": true,\n \"maxMobileCredsAllowed\": 123,\n \"remoteUnlockEnabled\": true,\n \"rhombusKeyAccessEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"userRhombusKeyConfig": {
"createdAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"preferences": {
"favoriteAccessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"favoriteAccessControlledElevatorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
},
"rhombusOrgUserUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"settings": {
"bypassSaml": true,
"credentialProvisioningRules": {
"endDateProvisioner": {
"type": "<string>",
"value": 123
},
"maxMobileCredsAllowed": 123,
"startDateProvisioner": {
"type": "<string>",
"value": 123
}
},
"remoteUnlockEnabled": true,
"rhombusKeyAccessEnabled": true
},
"updatedAtMillis": 123
}
}User Webservice
Update Rhombus key settings for user
Update the RhombusKey mobile app settings for the user, including access permissions and app configuration.
POST
/
api
/
user
/
updateRhombusKeySettingsForUser
Update Rhombus key settings for user
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"bypassSaml": true,
"maxMobileCredsAllowed": 123,
"remoteUnlockEnabled": true,
"rhombusKeyAccessEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser"
payload = {
"bypassSaml": True,
"maxMobileCredsAllowed": 123,
"remoteUnlockEnabled": True,
"rhombusKeyAccessEnabled": True,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
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({
bypassSaml: true,
maxMobileCredsAllowed: 123,
remoteUnlockEnabled: true,
rhombusKeyAccessEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updateRhombusKeySettingsForUser', 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/user/updateRhombusKeySettingsForUser")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"bypassSaml\": true,\n \"maxMobileCredsAllowed\": 123,\n \"remoteUnlockEnabled\": true,\n \"rhombusKeyAccessEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"userRhombusKeyConfig": {
"createdAtMillis": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"preferences": {
"favoriteAccessControlledDoorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"favoriteAccessControlledElevatorUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
},
"rhombusOrgUserUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"settings": {
"bypassSaml": true,
"credentialProvisioningRules": {
"endDateProvisioner": {
"type": "<string>",
"value": 123
},
"maxMobileCredsAllowed": 123,
"startDateProvisioner": {
"type": "<string>",
"value": 123
}
},
"remoteUnlockEnabled": true,
"rhombusKeyAccessEnabled": true
},
"updatedAtMillis": 123
}
}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
Show child attributes
Show child attributes
Show child attributes
Show child attributes
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Response
200 - application/json
OK
Show child attributes
Show child attributes
Last modified on September 15, 2026