GET object-user-rights/{id}?include={include}

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier of the object user right.

string

Required

include

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

string

None.

Body Parameters

None.

Response Information

Resource Description

ObjectUserRightViewModel
NameDescriptionTypeAdditional information
Id

string

None.

RelatedObject

BaseViewModel

Includable

Settable

RelatedUser

BaseViewModel

Includable

Settable

RelatedRights

Collection of BaseViewModel

Includable

Settable

SelfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "relatedObject": {
    "selfUrl": "sample string 1"
  },
  "relatedUser": {
    "selfUrl": "sample string 1"
  },
  "relatedRights": [
    {
      "selfUrl": "sample string 1"
    },
    {
      "selfUrl": "sample string 1"
    }
  ],
  "selfUrl": "sample string 2"
}