Convert a Permission Set.

post

/content/management/api/v1.1/repositories/{id}/permissionSets/{permissionSetId}/convertToEditorialRole

Convert a permission set of a repository to a custom editorial role.

Request

Supported Media Types
Path Parameters
Query Parameters
Header Parameters
Body ()
Bean representing a request payload to convert a repository permission set to a custom editorial role.
Root Schema : EditorialRoleOperation
Type: object
EditorialRoleOperation
Show Source
Back to Top

Response

Supported Media Types

201 Response

Created.
Body ()
Root Schema : EditorialRole
Type: object
EditorialRole
Show Source
Nested Schema : contentPrivileges
Type: array
The privileges of asset type defined by a custom editorial role.
Show Source
Nested Schema : date
Type: object
date
Show Source
Nested Schema : taxonomyPrivileges
Type: array
The privileges of taxonomy defined by a custom editorial role.
Show Source
Nested Schema : ContentPrivilege
Type: object
ContentPrivilege
Show Source
Nested Schema : operations
Type: array
Operations.
Show Source
Nested Schema : TaxonomyPrivilege
Type: object
TaxonomyPrivilege
Show Source
Nested Schema : nodes
Type: array
The path of the category.
Show Source
Nested Schema : operations
Type: array
Operations.
Show Source
Nested Schema : CategoryNodeBean
Type: object
Show Source

400 Response

Bad request.

403 Response

Forbidden.

404 Response

Not found.

500 Response

Internal server error.
Back to Top

Examples

The following example shows how to convert a repository permission set to a custom editorial role by submitting a POST request using cURL.

curl -X POST -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' 'https://host:port/content/management/api/v1.1/repositories/{id}/permissionSets/{permissionSetId}/convertToEditorialRole'

Example

/content/management/api/v1.1/repositories/37A3950CB83543D4B48E379627BF3C99/permissionSets/F4810B9BD8F44ADAA1A7973FC039DA67/convertToEditorialRole

This converts the permission set with id F4810B9BD8F44ADAA1A7973FC039DA67 under repository with id 37A3950CB83543D4B48E379627BF3C99 to a custom editorial role. Request payload should define the name and optionally the description of the new editorial role. Replace payload with your own data.

Request Payload

{
  "name": "Role converted from permset",
  "description": "converted role description"
} 

Response Body

{
  "id": "F4810B9BD8F44ADAA1A7973FC039DA67",
  "name": "Role converted from permset",
  "description": "converted role description",
  "createdBy": "cecuser1",
  "createdDate": {
    "value": "2022-01-12T09:32:04.083Z",
    "timezone": "UTC"
  },
  "updatedBy": "cecuser1",
  "updatedDate": {
    "value": "2022-01-12T09:32:04.083Z",
    "timezone": "UTC"
  },
  "isUsed": true,
  "hasPrivilegeGranted": true,
  "contentPrivileges": [
    {
      "typeId": "EF4C64E6BF81419F9743A8A4348A69EB",
      "typeName": "Image",
      "typeDisplayName": "Image",
      "isValid": true,
      "isEnabled": true,
      "operations": [
        "view",
        "update",
        "create",
        "delete"
      ]
    },
    {
      "typeId": "49B267B515C84AD7903C5B9C34EDB09E",
      "typeName": "TypeAAA",
      "typeDisplayName": "TypeAAA",
      "isValid": true,
      "isEnabled": true,
      "operations": [
        "view",
        "update",
        "create"
      ]
    },
    {
      "typeId": "8CB7D974CBB74923BF40A6CA68BED145",
      "typeName": "TypeBBB",
      "typeDisplayName": "TypeBBB",
      "isValid": true,
      "isEnabled": true,
      "operations": [
        "view",
        "update",
        "create"
      ]
    },
    {
      "typeId": "B228AE0D8E2E41B8924C5B9FFBCAF039",
      "typeName": "TypeCCC",
      "typeDisplayName": "TypeCCC",
      "isValid": true,
      "isEnabled": true,
      "operations": []
    },
    {
      "typeId": "",
      "typeName": null,
      "typeDisplayName": null,
      "isValid": true,
      "isEnabled": true,
      "operations": [
        "view"
      ]
    }
  ],
  "taxonomyPrivileges": [
    {
      "taxonomyId": null,
      "taxonomyShortName": null,
      "isForSiteManagement": false,
      "categoryId": "",
      "nodes": null,
      "isSiteCategory": false,
      "isValid": true,
      "isEnabled": true,
      "operations": [
        "view"
      ]
    }
  ],
  "links": [
    {
      "href": "http://<hostname>/content/management/api/v1.1/repositories/37A3950CB83543D4B48E379627BF3C99/permissionSets/F4810B9BD8F44ADAA1A7973FC039DA67/convertToEditorialRole",
      "rel": "self",
      "method": "POST",
      "mediaType": "application/json"
    },
    {
      "href": "http://<hostname>/content/management/api/v1.1/repositories/37A3950CB83543D4B48E379627BF3C99/permissionSets/F4810B9BD8F44ADAA1A7973FC039DA67/convertToEditorialRole",
      "rel": "canonical",
      "method": "POST",
      "mediaType": "application/json"
    },
    {
      "href": "http://<hostname>/content/management/api/v1.1/metadata-catalog/repositories/37A3950CB83543D4B48E379627BF3C99/permissionSets/F4810B9BD8F44ADAA1A7973FC039DA67/convertToEditorialRole",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}
Back to Top