Update the current authenticated user
Updates the authenticated user’s profile. Both fields are optional - include only what you want to change.
Updatable fields:
timezone: User’s timezone in IANA format (e.g., “America/New_York”)notificationPreferences: Array of notification preference updates
Partial updates for notification preferences:
The notificationPreferences array supports partial updates at two levels:
- Type-level: Only include notification types you want to modify. Types not included will keep their existing settings.
- Field-level: For each type included, you must provide both
emailandmobilefields, but only the values you provide will be applied.
Example - Update just one notification type:
{
"notificationPreferences": [
{ "type": "cardTransaction.approved", "email": false, "mobile": true }
]
}
This updates only “cardTransaction.approved” preferences; all other notification types remain unchanged.
Example - Update only timezone:
{
"timezone": "Europe/London"
}
Authorizations
Cognito JWT token for regular user authentication
Body
Request body for updating user profile. All fields are optional - include only the fields you want to update.
Request body for updating user profile. All fields are optional - include only the fields you want to update.
User's timezone in IANA format
"America/New_York"
Notification preferences to update. Supports partial updates: only include the notification types you want to change. For each type included, you can update just 'email', just 'mobile', or both fields. Notification types not included in this array will retain their existing settings.
Response
Response for status 200
Unique identifier for the user
"6a749a054c3b8fc5da595d1a"
User's email address
"user@example.com"
User's first name
"John"
ISO 8601 timestamp of when the user was created
"2026-08-06T14:28:21.827Z"
User's timezone in IANA format
"America/New_York"
User's notification preferences by type
User's identity verification status and any pending requirements
User's available capabilities and their requirements