GET api/CustomerLevels
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerLevelViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyCode | string |
None. |
|
| Level | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CompanyCode": "sample string 1",
"Level": 2
},
{
"CompanyCode": "sample string 1",
"Level": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerLevelViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">
<CustomerLevelViewModel>
<CompanyCode>sample string 1</CompanyCode>
<Level>2</Level>
</CustomerLevelViewModel>
<CustomerLevelViewModel>
<CompanyCode>sample string 1</CompanyCode>
<Level>2</Level>
</CustomerLevelViewModel>
</ArrayOfCustomerLevelViewModel>