GET api/CustomerGroups/GetCustomerGroup/{id}
Gets the Customer group's detail
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GetCustomerGroupResultName | Description | Type | Additional information |
---|---|---|---|
Id |
Id of the Customer group |
integer |
None. |
Name |
The name of the Customer group |
string |
None. |
Color |
The color of the Customer group |
string |
None. |
Description |
The description of the Customer group |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "VIP", "Color": "#ffffff", "Description": "Our best customers" }
application/xml, text/xml
Sample:
<GetCustomerGroupResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results"> <Color>#ffffff</Color> <Description>Our best customers</Description> <Id>1</Id> <Name>VIP</Name> </GetCustomerGroupResult>