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. |
adminPassword | Password for the admin user. |
groupName | Name of the group to be deleted. |
certAlias | Optional, is a client certificate alias for making SSL connections. |
certPassword | Optional, is the password for the provided certificate alias. |
Sample REST call for cxf
request
{
"DeleteGroupRequest": {
"adminUser": "cryptouser",
"adminPassword": "asdf1234",
"groupName": "abcd",
}
}
response
{
"DeleteGroupResponse": {
"description": "group deleted successfully."
}
}