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
| Property | Type | Required | Description |
|---|---|---|---|
firstName | string | No | User first name |
lastName | string | No | User last name |
email | string | No | User email address (may trigger re-verification) |
phone | string | No | Phone number in E.164 format (e.g., +14155551234) |
Example
{
"firstName": "Jane",
"lastName": "Smith",
"phone": "+14155559999"
}