Remove Member from Group
DELETE/api/groups/:groupKey/members/:userId
Remove a member from the group with given key.
You can find more information about groups here.
Note: Invalidates all
AccessTokenbecause they would contain the wrong group information.
Tokens
- A valid
AccessTokenwithADMINpermissions is required.
Request
Responses
- 200
- 401
- 403
- 404
- 500
Updated user information.
The following error codes correspond to this status:
ACCESS_TOKEN_EXPIRED: Indicates that the access token is expired.ACCESS_TOKEN_INVALID: Indicates that the access token cannot be decoded.AUTHENTICATION_REQUIRED: User is not authenticated.
The following error codes correspond to this status:
ROLE_REQUIRED: Principal does not have required role.
The following error codes correspond to this status:
GROUP_NOT_FOUND: No group with specified key found.USER_NOT_FOUND: User not found.
The following error codes correspond to this status:
ACCESS_TOKEN_ALLOWLIST_READING_FAILURE: Represents an exception indicating a failure when reading the allowlist for an access token cache.DATABASE_FAILURE: Exception representing a general failure related to database operations.POST_COMMIT_SIDE_EFFECT_FAILURE: Exception representing a failure to perform a side effect after a successful database operation.INVALID_PRINCIPAL_DOCUMENT: A requested principal document was stored in an invalid format.