GET group-users/{id}?include={include}
Gets the relation between a group and a user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier of the group. |
string |
Required |
| include |
Defines the properties to be included (separated by comma). |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
GroupUserViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Group | BaseViewModel |
Includable Settable |
|
| User | BaseViewModel |
Includable Settable |
|
| SelfUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"group": {
"selfUrl": "sample string 1"
},
"user": {
"selfUrl": "sample string 1"
},
"selfUrl": "sample string 2"
}