GET api/customergroups/GetByUserId?id={id}
Get a customer group by user ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
User 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": "2038ee22-8720-4d81-b7da-ca2a57def242", "Name": "sample string 2", "Customer": { "Id": "34ea5a1e-c42d-4235-957e-b2ed2fda5a1d", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }, { "Id": "2038ee22-8720-4d81-b7da-ca2a57def242", "Name": "sample string 2", "Customer": { "Id": "34ea5a1e-c42d-4235-957e-b2ed2fda5a1d", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] } ]