AclManager_DELETE
Removes acls
Defined in: aclManager.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
AclManager_DELETE(acls, pretty)
DELETE /wf/restapi/v2/admin/AclManager: Removes acls from MediaBeacon
|
Class Detail
AclManager_DELETE(acls, pretty)
DELETE /wf/restapi/v2/admin/AclManager: Removes acls from MediaBeacon
- Parameters:
- acls
- An array of acl objects to remove. These objects can have the same structure as collected from AclManager_GET, but only require the "id" parameter.
- pretty Optional, Default: false
- format the response to be human readable?
DELETE /wf/restapi/v2/admin/aclManager
Body form-data:
acls =
[
{
"id": "0_6_0B42561F-9CEB-44B4-89B4-052250CB7478"
},
{
"description": "new description",
"id": "0_6_AAE3F58D-9E97-4DCC-ADB3-44FCBEAA5A3C",
"name": "delete with full object",
"hidden": false,
"groupId": 6,
"revokedPermissions": [],
"rootPath": "",
"workspaces": [],
"searchFilter": null,
"forms": [],
"uploadForm": ""
}
]
Response:
[
{
"description": "",
"id": "0_6_0B42561F-9CEB-44B4-89B4-052250CB7478",
"name": "deleteById",
"hidden": false,
"groupId": 6,
"revokedPermissions": [],
"rootPath": "",
"workspaces": [],
"searchFilter": null,
"forms": [],
"uploadForm": ""
},
{
"description": "new description",
"id": "0_6_AAE3F58D-9E97-4DCC-ADB3-44FCBEAA5A3C",
"name": "delete with full object",
"hidden": false,
"groupId": 6,
"revokedPermissions": [],
"rootPath": "",
"workspaces": [],
"searchFilter": null,
"forms": [],
"uploadForm": ""
}
]