GET folder-group-rights/{id}?include={include}
Gets the information of the folder group right with the specified identifier.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier of the folder group right. |
string |
Required |
| include |
Defines the properties to be included (separated by comma). |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
FolderGroupRightViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| RelatedFolder | BaseViewModel |
Includable Settable |
|
| RelatedGroup | BaseViewModel |
Includable Settable |
|
| RelatedRights | Collection of BaseViewModel |
Includable Settable |
|
| SelfUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"relatedFolder": {
"selfUrl": "sample string 1"
},
"relatedGroup": {
"selfUrl": "sample string 1"
},
"relatedRights": [
{
"selfUrl": "sample string 1"
},
{
"selfUrl": "sample string 1"
}
],
"selfUrl": "sample string 2"
}