GET api/customergroups/GetByCustomerId?id={id}
Get a customer group by customer ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Customer ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of 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": "6839237d-9269-42f9-9cc9-35f66f922899", "Name": "sample string 2", "Customer": { "Id": "af2e1553-f0a1-4280-8f8c-7ee43657fcbd", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }, { "Id": "6839237d-9269-42f9-9cc9-35f66f922899", "Name": "sample string 2", "Customer": { "Id": "af2e1553-f0a1-4280-8f8c-7ee43657fcbd", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] } ]