POST api/UpdateUserProfile?USER_ID={USER_ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| USER_ID | string |
Required |
Body Parameters
UpdateAddressWithPic| Name | Description | Type | Additional information |
|---|---|---|---|
| DOB | string |
None. |
|
| BIRTH_PLACE | string |
None. |
|
| BIRTH_TIME | string |
None. |
|
| ADDRESS | string |
None. |
|
| USER_NAME | string |
None. |
|
| GENDER | string |
None. |
|
| ZODIAC_SIGN | string |
None. |
|
| MOBILE_NUMBER | string |
None. |
|
| PROFILEPIC | Collection of byte |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DOB": "sample string 1",
"BIRTH_PLACE": "sample string 2",
"BIRTH_TIME": "sample string 3",
"ADDRESS": "sample string 4",
"USER_NAME": "sample string 5",
"GENDER": "sample string 6",
"ZODIAC_SIGN": "sample string 7",
"MOBILE_NUMBER": "sample string 8",
"PROFILEPIC": "QEA=",
"EMAIL": "sample string 9"
}
application/xml, text/xml
Sample:
<UpdateAddressWithPic xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiNamo.Models"> <ADDRESS>sample string 4</ADDRESS> <BIRTH_PLACE>sample string 2</BIRTH_PLACE> <BIRTH_TIME>sample string 3</BIRTH_TIME> <DOB>sample string 1</DOB> <EMAIL>sample string 9</EMAIL> <GENDER>sample string 6</GENDER> <MOBILE_NUMBER>sample string 8</MOBILE_NUMBER> <PROFILEPIC>QEA=</PROFILEPIC> <USER_NAME>sample string 5</USER_NAME> <ZODIAC_SIGN>sample string 7</ZODIAC_SIGN> </UpdateAddressWithPic>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |