Add an ACS User to an Access Group
PUT /acs/access_groups/add_user ⇒ void
Adds a specified ACS user to a specified access group.
Request
await seam.acs.accessGroups.addUser({
acs_access_group_id: "44444444-4444-4444-4444-444444444444",
acs_user_id: "33333333-3333-3333-3333-333333333333",
});
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 user.
Return Type
void
Last updated
Was this helpful?