GET folder_right_sets/{id}?include={include}

Gets the information of the folder right set with the specified identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier of the folder right set.

integer

Required

include

Defines the properties to be included (separated by comma).

string

None.

Body Parameters

None.

Response Information

Resource Description

FolderRightSetViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

FolderRights

Collection of BaseViewModel

Includable

SelfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "folderRights": [
    {
      "selfUrl": "sample string 1"
    },
    {
      "selfUrl": "sample string 1"
    }
  ],
  "selfUrl": "sample string 3"
}