Remove an ACS User from an Access Group
Removes a specified access system user from a specified access group.
POST /acs/users/remove_from_access_group β void
Request Parameters
acs_access_group_id
String (Required)
ID of the access group from which you want to remove an access system user.
acs_user_id
String
ID of the access system user that you want to remove from an access group. You can only provide acs_user_id or user_identity_id.
user_identity_id
String
ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id.
Response
void
Examples
Remove an ACS user from an access group
Removes a specified ACS user from an access group.
Code
await seam.acs.users.removeFromAccessGroup({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
acs_access_group_id: "123e4567-e89b-12d3-a456-426614174000",
});
Output
// void
Last updated
Was this helpful?