POST Users/UpdateUserInfo
Request Information
URI Parameters
None.
Body Parameters
UserInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| GroupTitle | string |
None. |
|
| FullName | string |
None. |
|
| PhoneNumber | string |
None. |
|
| Sex | string |
None. |
|
| string |
None. |
||
| Street | string |
None. |
|
| Dob | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "654076eb-6bb2-4d67-923f-e57136a53217",
"GroupTitle": "sample string 1",
"FullName": "sample string 2",
"PhoneNumber": "sample string 3",
"Sex": "sample string 4",
"Email": "sample string 5",
"Street": "sample string 6",
"Dob": "2026-06-22T11:03:07.7959361+07:00"
}
application/xml, text/xml
Sample:
<UserInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PetShop.API.Controllers"> <Dob>2026-06-22T11:03:07.7959361+07:00</Dob> <Email>sample string 5</Email> <FullName>sample string 2</FullName> <GroupTitle>sample string 1</GroupTitle> <ID>654076eb-6bb2-4d67-923f-e57136a53217</ID> <PhoneNumber>sample string 3</PhoneNumber> <Sex>sample string 4</Sex> <Street>sample string 6</Street> </UserInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.