POST api/Account/UpdateProfile

Request Information

URI Parameters

None.

Body Parameters

UpdateProfileAccountRequest
NameDescriptionTypeAdditional information
FullName

string

None.

Gender

GenderEnum

None.

BirthDate

date

None.

Address

string

None.

Note

string

None.

AvatarId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "FullName": "sample string 1",
  "Gender": 0,
  "BirthDate": "2025-10-26T13:01:26.4000497+07:00",
  "Address": "sample string 2",
  "Note": "sample string 3",
  "AvatarId": "1c3753df-fe76-46c6-8333-a784906873bf"
}

application/xml, text/xml

Sample:
<UpdateProfileAccountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.Account">
  <Address>sample string 2</Address>
  <AvatarId>1c3753df-fe76-46c6-8333-a784906873bf</AvatarId>
  <BirthDate>2025-10-26T13:01:26.4000497+07:00</BirthDate>
  <FullName>sample string 1</FullName>
  <Gender>Nam</Gender>
  <Note>sample string 3</Note>
</UpdateProfileAccountRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"f983b868-d7ff-437d-a3f0-68c027ad88ff"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">f983b868-d7ff-437d-a3f0-68c027ad88ff</guid>