Add an ACS User to an Access Group
PUT /acs/users/add_to_access_group ⇒ void
Adds a specified ACS user to a specified access group.
Request
await seam.acs.users.addToAccessGroup({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
acs_access_group_id: "123e4567-e89b-12d3-a456-426614174000",
});
Response
// void
Authentication Methods
API key
Personal access token Must also include the
seam-workspace
header in the request.
Request Parameters
acs_access_group_id
acs_access_group_id
Type: string
Required: Yes
ID of the desired access group.
acs_user_id
acs_user_id
Type: string
Required: Yes
ID of the desired acs_user
.
Return Type
void
Last updated
Was this helpful?