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": "a78b58af-f6da-4706-966d-f6d78505624c",
"name": "sample string 2",
"colorCode": "sample string 3"
},
{
"id": "a78b58af-f6da-4706-966d-f6d78505624c",
"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>a78b58af-f6da-4706-966d-f6d78505624c</Id>
<Name>sample string 2</Name>
</CustomerGroupModel>
<CustomerGroupModel>
<ColorCode>sample string 3</ColorCode>
<Id>a78b58af-f6da-4706-966d-f6d78505624c</Id>
<Name>sample string 2</Name>
</CustomerGroupModel>
</ArrayOfCustomerGroupModel>