POST api/insertCustomer
Request Information
URI Parameters
None.
Body Parameters
CustomerMasterRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| City | integer |
None. |
|
| ContactNo1 | decimal number |
None. |
|
| ContactNo2 | string |
None. |
|
| DepotCode | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"City": 2,
"ContactNo1": 3.0,
"ContactNo2": "sample string 4",
"DepotCode": 5
}
application/xml, text/xml
Sample:
<DepotManagementController.CustomerMasterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DepotManagement.Controllers"> <City>2</City> <ContactNo1>3</ContactNo1> <ContactNo2>sample string 4</ContactNo2> <DepotCode>5</DepotCode> <Name>sample string 1</Name> </DepotManagementController.CustomerMasterRequest>
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.