GET api/CustomerGroup/GetList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerGroupModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| ColorCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "b3a9a4a4-4558-4fa8-8bbd-dcf4eed84b01",
"name": "sample string 2",
"colorCode": "sample string 3"
},
{
"id": "b3a9a4a4-4558-4fa8-8bbd-dcf4eed84b01",
"name": "sample string 2",
"colorCode": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerGroupModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Customer">
<CustomerGroupModel>
<ColorCode>sample string 3</ColorCode>
<Id>b3a9a4a4-4558-4fa8-8bbd-dcf4eed84b01</Id>
<Name>sample string 2</Name>
</CustomerGroupModel>
<CustomerGroupModel>
<ColorCode>sample string 3</ColorCode>
<Id>b3a9a4a4-4558-4fa8-8bbd-dcf4eed84b01</Id>
<Name>sample string 2</Name>
</CustomerGroupModel>
</ArrayOfCustomerGroupModel>