Skip to main content
POST
/
api
/
user
/
updateUser
Update user details
curl --request POST \
  --url https://api2.rhombussystems.com/api/user/updateUser \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "bypassSaml": false,
  "mfaEnabled": true,
  "name": "John Doe",
  "notificationIntervalsV2": [
    {
      "activityTriggerMap": {},
      "deviceFilterSet": [
        "AAAAAAAAAAAAAAAAAAAAAA"
      ],
      "diagnosticTriggerMap": {},
      "locationActivityTriggerMap": {},
      "locationDiagnosticTriggerMap": {},
      "locationFilterSet": [
        "AAAAAAAAAAAAAAAAAAAAAA"
      ],
      "locationOnlyFilterSet": [
        "AAAAAAAAAAAAAAAAAAAAAA"
      ],
      "minuteOfWeekStart": 123,
      "minuteOfWeekStop": 123
    }
  ],
  "permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "smsPhoneNumbers": [
    "<string>"
  ],
  "summaryEmailEnabled": true,
  "userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for updating user information and settings.

bypassSaml
boolean | null

Whether SAML bypass is enabled for the user

Example:

false

mfaEnabled
boolean | null

Whether MFA is enabled for the user

Example:

true

name
string | null

Name of the user

Example:

"John Doe"

notificationIntervalsV2
object[] | null

List of notification intervals (V2) for the user

permissionGroupUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

smsPhoneNumbers
(string | null)[] | null

List of SMS phone numbers for the user

List of SMS phone numbers for the user

summaryEmailEnabled
boolean | null

Whether summary emails are enabled for the user

Example:

true

userUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

Response object for updating a user.

error
boolean | null
errorMsg
string | null
warningMsg
string | null