DeleteGroup
This API deletes a group.
URL
<http/https>://<host-name>:<Port>/protectappws/services/rest/groups/deleteGroup
Input Parameters
Parameters | Description |
---|---|
adminUser | User with admin rights (optional). |
adminPassword | Password for the admin user (optional). |
groupName | Name of the group to be deleted. |
certAlias | Client certificate alias for making SSL connections (optional). |
certPassword | Password for the provided certificate alias (optional). |
Sample REST call for cxf
request
{
"DeleteGroupRequest": {
"adminUser": "cryptouser",
"adminPassword": "asdf1234",
"groupName": "abcd"
}
}
response
{
"DeleteGroupResponse": {
"description": "group deleted successfully."
}
}