REMOVE_PERMISSION - Hyland Automate Modeling - Current - Current - Ready - Content Innovation Cloud - external

Hyland Automate Modeling

Platform
Content Innovation Cloud
Product
Hyland Automate Modeling
Release
Current
License

The ADD_PERMISSION action is used to remove permission from the defined content within the application.

The payload for the action is:

Property Required Description
content Required The content parameter holding the reference to a content, or the content object which the permissions are going to be removed. If the received value contains multiple references to content objects, only the first of them will be used.
permissions Required The permissions to be added to the users or groups. For example:
  {
    "permission": "Read",
    "granted": false,
    "group": {
      "id": "1234567890",
      "name": "hr"
    }
  },
  {
    "permission": "Read",
    "granted": false,
    "group": {
      "id": "9876543210",
      "name": "sales"
    }
  }
]