PUT api/Auth/UpdateProfile
Request Information
URI Parameters
None.
Body Parameters
UserUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| PhoneNumber | string |
None. |
|
| DateOfBirth | date |
None. |
|
| StoreId | globally unique identifier |
None. |
|
| Points | integer |
None. |
|
| IsActive | boolean |
None. |
|
| UpdatedOn | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Email": "sample string 4",
"PhoneNumber": "sample string 5",
"DateOfBirth": "2025-12-10T19:32:42.0773596+10:00",
"StoreId": "e935131e-d2fa-420a-9c15-cce65c25df64",
"Points": 7,
"IsActive": true,
"UpdatedOn": "2025-12-10T19:32:42.0773596+10:00"
}
application/xml, text/xml
Sample:
<UserUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi2.Controllers"> <DateOfBirth>2025-12-10T19:32:42.0773596+10:00</DateOfBirth> <Email>sample string 4</Email> <FirstName>sample string 2</FirstName> <IsActive>true</IsActive> <LastName>sample string 3</LastName> <PhoneNumber>sample string 5</PhoneNumber> <Points>7</Points> <StoreId>e935131e-d2fa-420a-9c15-cce65c25df64</StoreId> <UpdatedOn>2025-12-10T19:32:42.0773596+10:00</UpdatedOn> <UserId>1</UserId> </UserUpdateDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.