GET api/CustomerGroups/GetCustomerGroup/{id}

Gets the Customer group's detail

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

GetCustomerGroupResult
NameDescriptionTypeAdditional 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>