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

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier of the object right set.

integer

Required

include

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

string

None.

Body Parameters

None.

Response Information

Resource Description

ObjectRightSetViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

ObjectRights

Collection of BaseViewModel

Includable

SelfUrl

string

None.

Response Formats

application/json, text/json

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