POST api/Customer/SetCustomer
Request Information
URI Parameters
None.
Body Parameters
CustomerDetailsAddRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerProfile | CustomerProfile |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerProfile": {
"UserId": 1,
"Mobile": "sample string 2",
"Name": "sample string 3",
"EmailId": "sample string 4",
"Gender": "sample string 5"
}
}
application/xml, text/xml
Sample:
<CustomerDetailsAddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
<CustomerProfile>
<EmailId>sample string 4</EmailId>
<Gender>sample string 5</Gender>
<Mobile>sample string 2</Mobile>
<Name>sample string 3</Name>
<UserId>1</UserId>
</CustomerProfile>
</CustomerDetailsAddRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerDetailsAddResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true
}
application/xml, text/xml
Sample:
<CustomerDetailsAddResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request"> <Status>true</Status> </CustomerDetailsAddResponse>