POST api/CustomerType/GetCustomerTypeById/{customerTypeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerTypeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerTypeVM| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerTypeId | integer |
None. |
|
| CustomerType | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsStaff | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"customerTypeId": 1,
"customerType": "sample string 2",
"isActive": true,
"isStaff": true
}
application/xml, text/xml
Sample:
<CustomerTypeVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM"> <CustomerType>sample string 2</CustomerType> <CustomerTypeId>1</CustomerTypeId> <IsActive>true</IsActive> <IsStaff>true</IsStaff> </CustomerTypeVM>