Delete a Group
DELETE/api/v32.07/groups/:id
x-prisma-cloud-target-env: {"permission":"userManagement"}
Deletes a group.
The id
can be retrieved from the GET /api/v1/groups
endpoint.
To invoke this endpoint in the Console UI:
- Navigate to Manage > Authentication > Groups.
- Click the dotted icon under the Actions column to open the menu options.
- Click the Delete button to initiate the deletion.
- Click the Delete Group button to confirm the deletion.
cURL Request
The following cURL command deletes a collection with the name {id}
.
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
'https://<CONSOLE>/api/v1/groups/{id}'
Note: No response will be returned upon successful execution.
Request
Path Parameters
id stringrequired
Responses
- 200
- default
OK
Loading...