PATCH
/
v3
/
users
/
{userId}
Update User
curl --request PATCH \
  --url http://127.0.0.1:3333/v3/users/{userId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "onboardingCategories": [
    "<string>"
  ],
  "displayedInAppNotifications": {},
  "groupTitlesAutoGeneration": {
    "isEnabled": true,
    "provider": "<string>",
    "credentialsId": "<string>",
    "model": "<string>",
    "prompt": "<string>"
  },
  "name": "<string>",
  "image": "<string>",
  "company": "<string>",
  "graphNavigation": "MOUSE",
  "preferredAppAppearance": "<string>",
  "preferredLanguage": "<string>"
}
'
{
  "id": "<string>",
  "onboardingCategories": [
    "<string>"
  ],
  "displayedInAppNotifications": {},
  "groupTitlesAutoGeneration": {
    "isEnabled": true,
    "provider": "<string>",
    "credentialsId": "<string>",
    "model": "<string>",
    "prompt": "<string>"
  },
  "name": "<string>",
  "image": "<string>",
  "company": "<string>",
  "graphNavigation": "MOUSE",
  "preferredAppAppearance": "<string>",
  "preferredLanguage": "<string>",
  "email": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string
required

Body

application/json
onboardingCategories
string[]
displayedInAppNotifications
object
groupTitlesAutoGeneration
object
name
string | null
image
string | null
company
string | null
graphNavigation
enum<string> | null
Available options:
MOUSE,
TRACKPAD
preferredAppAppearance
string | null
preferredLanguage
string | null

Response

Default Response

id
string
required
onboardingCategories
string[]
displayedInAppNotifications
object
groupTitlesAutoGeneration
object
name
string | null
image
string | null
company
string | null
graphNavigation
enum<string> | null
Available options:
MOUSE,
TRACKPAD
preferredAppAppearance
string | null
preferredLanguage
string | null
email
string | null