PUT folder-group-rights/{id}

Updates an existing folder group right.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier of the folder group right.

string

Required

Body Parameters

The model containing the information to update an folder group right.

FolderGroupRightViewModel
NameDescriptionTypeAdditional information
Id

string

None.

RelatedFolder

BaseViewModel

Includable

Settable

RelatedGroup

BaseViewModel

Includable

Settable

RelatedRights

Collection of BaseViewModel

Includable

Settable

SelfUrl

string

None.

Request 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"
}

Response Information

Resource Description

FolderGroupRightViewModel
NameDescriptionTypeAdditional 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"
}