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 CustomerGroupDto| Name | 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": "fc05dc07-61dd-4c0e-b404-e4d7217bfc7b",
"Name": "sample string 2",
"Customer": {
"Id": "f0701851-bce7-4ec2-82fa-167e2b8bd1b4",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
},
{
"Id": "fc05dc07-61dd-4c0e-b404-e4d7217bfc7b",
"Name": "sample string 2",
"Customer": {
"Id": "f0701851-bce7-4ec2-82fa-167e2b8bd1b4",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
}
]