Update user details selectively
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updateUserSelective \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"bypassSaml": true,
"mfaEnabled": true,
"name": "<string>",
"notificationIntervalsV2": [
{
"activityTriggerMap": {},
"deviceFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"diagnosticTriggerMap": {},
"locationActivityTriggerMap": {},
"locationDiagnosticTriggerMap": {},
"locationFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationOnlyFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"restrictToAllowedLoginIps": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updateUserSelective"
payload = {
"bypassSaml": True,
"mfaEnabled": True,
"name": "<string>",
"notificationIntervalsV2": [
{
"activityTriggerMap": {},
"deviceFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"diagnosticTriggerMap": {},
"locationActivityTriggerMap": {},
"locationDiagnosticTriggerMap": {},
"locationFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationOnlyFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"restrictToAllowedLoginIps": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": 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,
mfaEnabled: true,
name: '<string>',
notificationIntervalsV2: [
{
activityTriggerMap: {},
deviceFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
diagnosticTriggerMap: {},
locationActivityTriggerMap: {},
locationDiagnosticTriggerMap: {},
locationFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationOnlyFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
minuteOfWeekStart: 123,
minuteOfWeekStop: 123
}
],
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
restrictToAllowedLoginIps: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updateUserSelective', 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/updateUserSelective")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"bypassSaml\": true,\n \"mfaEnabled\": true,\n \"name\": \"<string>\",\n \"notificationIntervalsV2\": [\n {\n \"activityTriggerMap\": {},\n \"deviceFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"diagnosticTriggerMap\": {},\n \"locationActivityTriggerMap\": {},\n \"locationDiagnosticTriggerMap\": {},\n \"locationFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationOnlyFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"minuteOfWeekStart\": 123,\n \"minuteOfWeekStop\": 123\n }\n ],\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"restrictToAllowedLoginIps\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{}User Webservice
Update user details selectively
Selectively updates a user’s details. Omitted fields are ignored but fields with null will unset a value, providing granular control over user updates.
POST
/
api
/
user
/
updateUserSelective
Update user details selectively
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updateUserSelective \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"bypassSaml": true,
"mfaEnabled": true,
"name": "<string>",
"notificationIntervalsV2": [
{
"activityTriggerMap": {},
"deviceFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"diagnosticTriggerMap": {},
"locationActivityTriggerMap": {},
"locationDiagnosticTriggerMap": {},
"locationFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationOnlyFilterSet": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"restrictToAllowedLoginIps": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updateUserSelective"
payload = {
"bypassSaml": True,
"mfaEnabled": True,
"name": "<string>",
"notificationIntervalsV2": [
{
"activityTriggerMap": {},
"deviceFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"diagnosticTriggerMap": {},
"locationActivityTriggerMap": {},
"locationDiagnosticTriggerMap": {},
"locationFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationOnlyFilterSet": ["AAAAAAAAAAAAAAAAAAAAAA"],
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"restrictToAllowedLoginIps": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": 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,
mfaEnabled: true,
name: '<string>',
notificationIntervalsV2: [
{
activityTriggerMap: {},
deviceFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
diagnosticTriggerMap: {},
locationActivityTriggerMap: {},
locationDiagnosticTriggerMap: {},
locationFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationOnlyFilterSet: ['AAAAAAAAAAAAAAAAAAAAAA'],
minuteOfWeekStart: 123,
minuteOfWeekStop: 123
}
],
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
restrictToAllowedLoginIps: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updateUserSelective', 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/updateUserSelective")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"bypassSaml\": true,\n \"mfaEnabled\": true,\n \"name\": \"<string>\",\n \"notificationIntervalsV2\": [\n {\n \"activityTriggerMap\": {},\n \"deviceFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"diagnosticTriggerMap\": {},\n \"locationActivityTriggerMap\": {},\n \"locationDiagnosticTriggerMap\": {},\n \"locationFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationOnlyFilterSet\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"minuteOfWeekStart\": 123,\n \"minuteOfWeekStop\": 123\n }\n ],\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"restrictToAllowedLoginIps\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{}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
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Response
200 - application/json
OK
Response object for selective user updates.
Last modified on August 7, 2026
⌘I