Skip to main content
PATCH
/
users
/
me
/
employment-info
Update user employment info
curl --request PATCH \
  --url https://{host}/users/me/employment-info \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-user-id: <x-user-id>' \
  --data '
{
  "employmentInfo": {
    "incomeRangeId": "5",
    "employmentStatus": "SelfEmployed",
    "sourcesOfWealth": [
      "BusinessOwnership"
    ],
    "industry": "FinanceAndInsurance"
  }
}
'

Authorizations

Authorization
string
header
required

Auth0-issued access token that includes the scopes listed for the endpoint.

Headers

x-user-id
string
required

MongoDB ObjectId of the authenticated user

Pattern: ^[a-f0-9]{24}$

Body

application/json
employmentInfo
object
required

Employment and source of wealth information. Required on create user. incomeRangeId, employmentStatus, and sourcesOfWealth are required. Industry is required when employmentStatus is FullTime, PartTime, or SelfEmployed.

Response

Employment info updated successfully