Delete a group
- Last UpdatedFeb 20, 2025
- 1 minute read
Groups in the Client Failover Service must be deleted individually using one of the following REST tools: cURL or Postman.
cURL
To delete a group using cURL:
-
Open a command line.
-
Run a DELETE command, defining the endpoint port and group ID:
Note: To delete a group, there cannot be any active open sessions within the group.
curl -i -k -u <username>:<password> -X DELETE "https://<host>:<port>/api/v1/clientfailover/groups/<groupID>"
For additional information on the curl parameters, such as -i or -k, refer to the Configuration tools section.
Postman
Note: All endpoints in Postman require basic authorization. For more information on basic authorization, refer to the Configuration tools section.
To delete a group using Postman:
-
Select Delete from the HTTP request drop-down.
-
Use the following Request URL, defining the endpoint host, port, and group ID:
Note: To delete a group, there cannot be any active open sessions within the group.
https://<host>:<port>/api/v1/clientfailover/groups/<groupID>
-
Select Send to delete the group.