Add an ACS User to an Access Group
Adds a specified access system user to a specified access group.
Adds a specified access system user to a specified access group.
Code:
await seam.acs.users.addToAccessGroup({
acs_user_id: "15ce02a8-b145-4c02-adc9-d9d84c8a1177",
acs_access_group_id: "58c8b034-e527-4635-a335-afc74dc79b27",
});Output:
// voidAdds a specified access system user to a specified access group.
Code:
curl --include --request POST "https://connect.getseam.com/acs/users/add_to_access_group" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_user_id": "15ce02a8-b145-4c02-adc9-d9d84c8a1177",
"acs_access_group_id": "58c8b034-e527-4635-a335-afc74dc79b27"
}
EOFOutput:
{}Adds a specified access system user to a specified access group.
Code:
Output:
Adds a specified access system user to a specified access group.
Code:
Output:
Adds a specified access system user to a specified access group.
Code:
Output:
Adds a specified access system user to a specified access group.
Code:
Output:
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
Returns: void
Last updated
Was this helpful?

