Add an ACS User to an Access Group
Adds a specified access system user to a specified access group.
PUT /acs/users/add_to_access_group β void
Request Parameters
acs_access_group_id
String (Required)
ID of the access group to which you want to add an access system user.
acs_user_id
String (Required)
ID of the access system user that you want to add to an access group.
Response
void
Examples
Add an ACS user to an access group
Adds a specified ACS user to a specified access group.
Code
await seam.acs.users.addToAccessGroup({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
acs_access_group_id: "123e4567-e89b-12d3-a456-426614174000",
});
Output
// void
Last updated
Was this helpful?