put https://developer.interactgo.com/api/permission
Save Entity Permissions
Saves or updates permissions for one or more entities. This is done through a JSON request body.
There is currently only one Entity Type Enum which is ADMIN_APPLICATION_PANEL_LINKS
Request Body
This allows the user to either create/update/delete permissions for entities:
[
{
"EntityType": "ADMIN_APPLICATION_PANEL_LINKS",
"EntityId": 1,
"Level": "Excluded",
"OrganisationPersonId": -1,
"OrganisationOrPerson": "Organisation",
"UpdateType": "Edit"
},
{
"EntityType": "ADMIN_APPLICATION_PANEL_LINKS",
"EntityId": 1,
"Level": "Included",
"OrganisationPersonId": 264,
"OrganisationOrPerson": "Person",
"UpdateType": "Create"
}
]