POST api/User/UpdateUserInfo
Request Information
URI Parameters
None.
Body Parameters
ProviderInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| PROVIDER_ID | string |
None. |
|
| PROVIDER_NAME | string |
None. |
|
| PROVIDER_USER_ID | string |
None. |
|
| NAME | string |
None. |
|
| NICK_NAME | string |
None. |
|
| DEPARTMENT | string |
None. |
|
| TITLE | string |
None. |
|
| PHONE_NUMBER | string |
None. |
|
| string |
None. |
||
| IMAGE_URL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PROVIDER_ID": "sample string 1",
"PROVIDER_NAME": "sample string 2",
"PROVIDER_USER_ID": "sample string 3",
"NAME": "sample string 4",
"NICK_NAME": "sample string 5",
"DEPARTMENT": "sample string 6",
"TITLE": "sample string 7",
"PHONE_NUMBER": "sample string 8",
"MAIL": "sample string 9",
"IMAGE_URL": "sample string 10"
}
application/xml, text/xml
Sample:
<ProviderInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer.ProviderUser"> <DEPARTMENT>sample string 6</DEPARTMENT> <IMAGE_URL>sample string 10</IMAGE_URL> <MAIL>sample string 9</MAIL> <NAME>sample string 4</NAME> <NICK_NAME>sample string 5</NICK_NAME> <PHONE_NUMBER>sample string 8</PHONE_NUMBER> <PROVIDER_ID>sample string 1</PROVIDER_ID> <PROVIDER_NAME>sample string 2</PROVIDER_NAME> <PROVIDER_USER_ID>sample string 3</PROVIDER_USER_ID> <TITLE>sample string 7</TITLE> </ProviderInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RequestReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| status | boolean |
None. |
|
| dataCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"message": "sample string 2",
"data": {},
"status": true,
"dataCount": 5
}
application/xml, text/xml
Sample:
<RequestReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer"> <code>1</code> <data /> <dataCount>5</dataCount> <message>sample string 2</message> <status>true</status> </RequestReturn>