PUT api/ms/customer/update
Update Personal Information
Request Information
URI Parameters
None.
Body Parameters
m_customer_update| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerFirstName | string |
Required String length: inclusive between 0 and 100 |
|
| CustomerLastName | string |
Required String length: inclusive between 0 and 100 |
|
| CustomerUsername | string |
Required String length: inclusive between 0 and 200 |
|
| ProfileImg | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerFirstName": "sample string 1",
"CustomerLastName": "sample string 2",
"CustomerUsername": "sample string 3",
"ProfileImg": "sample string 4"
}
application/xml, text/xml
Sample:
<m_customer_update xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project.Modules.Models.Mainsystem"> <CustomerFirstName>sample string 1</CustomerFirstName> <CustomerLastName>sample string 2</CustomerLastName> <CustomerUsername>sample string 3</CustomerUsername> <ProfileImg>sample string 4</ProfileImg> </m_customer_update>
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.