DELETE /api/v2/accessgroups/by-name/{accessgroupname}/members/{usergidid}
Removes a user from an access group by group name.
Parameters
| Name | In | Description | Required | Type |
|---|---|---|---|---|
| accessGroupName | path | Access group name. | true | string |
| userGidId | path | User GID id (gid_gidid). | true | string |
Responses
| Code | Returns | Type |
|---|---|---|
| 200 | OK | |
| 401 | Unauthorized - Missing or invalid access token | |
| 403 | Forbidden - Provided access token does not permit usage of this API or data | |
| 404 | Not Found | Microsoft.AspNetCore.Mvc.ProblemDetails |
| 500 | Internal Server Error |
PUT /api/v2/accessgroups/by-name/{accessgroupname}/members/{usergidid}
Adds a user to an access group by group name.
Parameters
| Name | In | Description | Required | Type |
|---|---|---|---|---|
| accessGroupName | path | Access group name. | true | string |
| userGidId | path | User GID id (gid_gidid). | true | string |
Responses
| Code | Returns | Type |
|---|---|---|
| 200 | OK | |
| 401 | Unauthorized - Missing or invalid access token | |
| 403 | Forbidden - Provided access token does not permit usage of this API or data | |
| 404 | Not Found | Microsoft.AspNetCore.Mvc.ProblemDetails |
| 500 | Internal Server Error |