Update partner user details
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updatePartnerUser \
--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>",
"notificationSettingsV2": {
"allClientsSelected": true,
"clientNotificationIntervalsMap": {},
"notificationIntervalsForAllClients": [
{
"clientUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"rows": [
{
"activities": [],
"days": [],
"diagnostics": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": []
}
]
}
],
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsNotificationIncludesLinks": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updatePartnerUser"
payload = {
"bypassSaml": True,
"mfaEnabled": True,
"name": "<string>",
"notificationSettingsV2": {
"allClientsSelected": True,
"clientNotificationIntervalsMap": {},
"notificationIntervalsForAllClients": [
{
"clientUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"rows": [
{
"activities": [],
"days": [],
"diagnostics": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": []
}
]
}
],
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsNotificationIncludesLinks": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": True,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"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>',
notificationSettingsV2: {
allClientsSelected: true,
clientNotificationIntervalsMap: {},
notificationIntervalsForAllClients: [
{
clientUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
rows: [
{
activities: [],
days: [],
diagnostics: [],
interval: {dayOfWeek: 123, minuteOfDayStartInclusive: 123, minuteOfDayStopExclusive: 123},
mediums: []
}
]
}
],
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
smsNotificationIncludesLinks: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
},
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updatePartnerUser', 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/updatePartnerUser")
.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 \"notificationSettingsV2\": {\n \"allClientsSelected\": true,\n \"clientNotificationIntervalsMap\": {},\n \"notificationIntervalsForAllClients\": [\n {\n \"clientUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"rows\": [\n {\n \"activities\": [],\n \"days\": [],\n \"diagnostics\": [],\n \"interval\": {\n \"dayOfWeek\": 123,\n \"minuteOfDayStartInclusive\": 123,\n \"minuteOfDayStopExclusive\": 123\n },\n \"mediums\": []\n }\n ]\n }\n ],\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"smsNotificationIncludesLinks\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n },\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}User Webservice
Update partner user details
Update a partner’s details with partner-specific validation and audit logging.
POST
/
api
/
user
/
updatePartnerUser
Update partner user details
curl --request POST \
--url https://api2.rhombussystems.com/api/user/updatePartnerUser \
--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>",
"notificationSettingsV2": {
"allClientsSelected": true,
"clientNotificationIntervalsMap": {},
"notificationIntervalsForAllClients": [
{
"clientUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"rows": [
{
"activities": [],
"days": [],
"diagnostics": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": []
}
]
}
],
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsNotificationIncludesLinks": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/user/updatePartnerUser"
payload = {
"bypassSaml": True,
"mfaEnabled": True,
"name": "<string>",
"notificationSettingsV2": {
"allClientsSelected": True,
"clientNotificationIntervalsMap": {},
"notificationIntervalsForAllClients": [
{
"clientUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"rows": [
{
"activities": [],
"days": [],
"diagnostics": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": []
}
]
}
],
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"smsNotificationIncludesLinks": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": True,
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"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>',
notificationSettingsV2: {
allClientsSelected: true,
clientNotificationIntervalsMap: {},
notificationIntervalsForAllClients: [
{
clientUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
rows: [
{
activities: [],
days: [],
diagnostics: [],
interval: {dayOfWeek: 123, minuteOfDayStartInclusive: 123, minuteOfDayStopExclusive: 123},
mediums: []
}
]
}
],
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
smsNotificationIncludesLinks: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
},
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/user/updatePartnerUser', 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/updatePartnerUser")
.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 \"notificationSettingsV2\": {\n \"allClientsSelected\": true,\n \"clientNotificationIntervalsMap\": {},\n \"notificationIntervalsForAllClients\": [\n {\n \"clientUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"rows\": [\n {\n \"activities\": [],\n \"days\": [],\n \"diagnostics\": [],\n \"interval\": {\n \"dayOfWeek\": 123,\n \"minuteOfDayStartInclusive\": 123,\n \"minuteOfDayStopExclusive\": 123\n },\n \"mediums\": []\n }\n ]\n }\n ],\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"smsNotificationIncludesLinks\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n },\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}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"
Last modified on August 7, 2026
⌘I