Update notification settings for user
curl --request POST \
--url https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"receiveHealthNotifications": true,
"smsNotificationIncludesLinks": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"timeFrames": [
{
"days": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": [],
"rows": [
{
"activities": [],
"devices": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"diagnostics": [],
"locationOnly": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationOnlyActivities": [],
"locationOnlyDiagnostics": [],
"locations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"promptUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
]
}
],
"updatedSetMethodMap": {},
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings"
payload = {
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"receiveHealthNotifications": True,
"smsNotificationIncludesLinks": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": True,
"timeFrames": [
{
"days": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": [],
"rows": [
{
"activities": [],
"devices": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"diagnostics": [],
"locationOnly": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationOnlyActivities": [],
"locationOnlyDiagnostics": [],
"locations": ["AAAAAAAAAAAAAAAAAAAAAA"],
"promptUuids": ["AAAAAAAAAAAAAAAAAAAAAA"]
}
]
}
],
"updatedSetMethodMap": {},
"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({
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
receiveHealthNotifications: true,
smsNotificationIncludesLinks: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
timeFrames: [
{
days: [],
interval: {dayOfWeek: 123, minuteOfDayStartInclusive: 123, minuteOfDayStopExclusive: 123},
mediums: [],
rows: [
{
activities: [],
devices: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
diagnostics: [],
locationOnly: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationOnlyActivities: [],
locationOnlyDiagnostics: [],
locations: ['AAAAAAAAAAAAAAAAAAAAAA'],
promptUuids: ['AAAAAAAAAAAAAAAAAAAAAA']
}
]
}
],
updatedSetMethodMap: {},
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings', 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/customer/updateCurrentUserNotificationSettings")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"receiveHealthNotifications\": true,\n \"smsNotificationIncludesLinks\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"timeFrames\": [\n {\n \"days\": [],\n \"interval\": {\n \"dayOfWeek\": 123,\n \"minuteOfDayStartInclusive\": 123,\n \"minuteOfDayStopExclusive\": 123\n },\n \"mediums\": [],\n \"rows\": [\n {\n \"activities\": [],\n \"devices\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"diagnostics\": [],\n \"locationOnly\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationOnlyActivities\": [],\n \"locationOnlyDiagnostics\": [],\n \"locations\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"promptUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ]\n }\n ]\n }\n ],\n \"updatedSetMethodMap\": {},\n \"userUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}User Webservice
Update notification settings for user
Update notification settings for user
POST
/
api
/
customer
/
updateCurrentUserNotificationSettings
Update notification settings for user
curl --request POST \
--url https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"receiveHealthNotifications": true,
"smsNotificationIncludesLinks": true,
"smsPhoneNumbers": [
"<string>"
],
"summaryEmailEnabled": true,
"timeFrames": [
{
"days": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": [],
"rows": [
{
"activities": [],
"devices": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"diagnostics": [],
"locationOnly": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"locationOnlyActivities": [],
"locationOnlyDiagnostics": [],
"locations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"promptUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
]
}
],
"updatedSetMethodMap": {},
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings"
payload = {
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"receiveHealthNotifications": True,
"smsNotificationIncludesLinks": True,
"smsPhoneNumbers": ["<string>"],
"summaryEmailEnabled": True,
"timeFrames": [
{
"days": [],
"interval": {
"dayOfWeek": 123,
"minuteOfDayStartInclusive": 123,
"minuteOfDayStopExclusive": 123
},
"mediums": [],
"rows": [
{
"activities": [],
"devices": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"diagnostics": [],
"locationOnly": ["AAAAAAAAAAAAAAAAAAAAAA"],
"locationOnlyActivities": [],
"locationOnlyDiagnostics": [],
"locations": ["AAAAAAAAAAAAAAAAAAAAAA"],
"promptUuids": ["AAAAAAAAAAAAAAAAAAAAAA"]
}
]
}
],
"updatedSetMethodMap": {},
"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({
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
receiveHealthNotifications: true,
smsNotificationIncludesLinks: true,
smsPhoneNumbers: ['<string>'],
summaryEmailEnabled: true,
timeFrames: [
{
days: [],
interval: {dayOfWeek: 123, minuteOfDayStartInclusive: 123, minuteOfDayStopExclusive: 123},
mediums: [],
rows: [
{
activities: [],
devices: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
diagnostics: [],
locationOnly: ['AAAAAAAAAAAAAAAAAAAAAA'],
locationOnlyActivities: [],
locationOnlyDiagnostics: [],
locations: ['AAAAAAAAAAAAAAAAAAAAAA'],
promptUuids: ['AAAAAAAAAAAAAAAAAAAAAA']
}
]
}
],
updatedSetMethodMap: {},
userUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/customer/updateCurrentUserNotificationSettings', 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/customer/updateCurrentUserNotificationSettings")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"receiveHealthNotifications\": true,\n \"smsNotificationIncludesLinks\": true,\n \"smsPhoneNumbers\": [\n \"<string>\"\n ],\n \"summaryEmailEnabled\": true,\n \"timeFrames\": [\n {\n \"days\": [],\n \"interval\": {\n \"dayOfWeek\": 123,\n \"minuteOfDayStartInclusive\": 123,\n \"minuteOfDayStopExclusive\": 123\n },\n \"mediums\": [],\n \"rows\": [\n {\n \"activities\": [],\n \"devices\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"diagnostics\": [],\n \"locationOnly\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"locationOnlyActivities\": [],\n \"locationOnlyDiagnostics\": [],\n \"locations\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"promptUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ]\n }\n ]\n }\n ],\n \"updatedSetMethodMap\": {},\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
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on August 7, 2026
⌘I