Skip to main content

UpdateProfileRequest

Package: @nauth-toolkit/client Type: Request

Data transfer object for updating user profile information. All fields are optional; only provided fields will be updated.

import { UpdateProfileRequest } from '@nauth-toolkit/client';

Properties

PropertyTypeRequiredDescription
firstNamestringNoUser first name
lastNamestringNoUser last name
emailstringNoUser email address (may trigger re-verification)
phonestringNoPhone number in E.164 format (e.g., +14155551234)

Example

{
"firstName": "Jane",
"lastName": "Smith",
"phone": "+14155559999"
}

Used By