GET api/customergroups/{id}
Get a customer group by ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Customer Group ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerGroupDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Name | string |
Required Max length: 50 |
|
Customer | CustomerDto |
None. |
|
IsActive | boolean |
None. |
|
Settings | Collection of CustomerGroupSettingDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "41ec4e71-4c4b-4eb7-9a55-d40461131d11", "Name": "sample string 2", "Customer": { "Id": "5dfb9f74-39e5-4c96-bc71-c4d722de715e", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }