POST api/CustomerType/GetCustomerTypes
Request Information
URI Parameters
None.
Body Parameters
CustomerTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerTypeId | integer |
None. |
|
| Type | string |
None. |
|
| Description | string |
None. |
|
| EmployeeId | integer |
None. |
|
| CompanyId | integer |
None. |
|
| IsDeleted | boolean |
None. |
|
| CashNCarryPercentage | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerTypeId": 1,
"Type": "sample string 2",
"Description": "sample string 3",
"EmployeeId": 4,
"CompanyId": 5,
"IsDeleted": true,
"CashNCarryPercentage": "sample string 6"
}
application/xml, text/xml
Sample:
<CustomerTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OMSWebApi.Models"> <CashNCarryPercentage>sample string 6</CashNCarryPercentage> <CompanyId>5</CompanyId> <CustomerTypeId>1</CustomerTypeId> <Description>sample string 3</Description> <EmployeeId>4</EmployeeId> <IsDeleted>true</IsDeleted> <Type>sample string 2</Type> </CustomerTypeModel>
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. |