DELETE api/topology/groups/{groupID}/lock/{userID}
Description
Unlock a Group for exclusive access by a user. Only the original locker can unlock the Group, or another user with sufficient privileges to force an unlock of the Group, usually a user with an Administrator role in their user privileges.
The userID specified should match the original locker ID and also must be the requesting user's authentication identity. This means that a user cannot request an unlocking for another user.
Resource URL
https://localhost:8090/api/topology/groups/{groupID}/lock/{userID}
Parameters
| groupID | mandatory | The id of the Group to be unlocked. |
| userID | mandatory | The id of the user who originally locked this Group. To successfully unlock the Group, the requestor's authentication id should match the original locker and should also match the userID specified in the parameter list |
Response Codes
| Response Code | Description |
|---|---|
| 200 | Success. The Group is unlocked. No object is returned. |
| 403 | Forbidden. The Group has no lock, or the user is trying to unlock a Group locked by a different user. |
| 404 | The Group doesn't exist. |
Example Request and Response
DELETE https://localhost:8090/api/topology/groups/group-2/lock/developer
HTTP 1.1 200 OK