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.accessGroups.addUser({
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
acs_user_id: "ebf54c67-746c-471f-a03f-86665148a84c",
});Output:
// voidAdds a specified access system user to a specified access group.
Code:
curl --include --request POST "https://connect.getseam.com/acs/access_groups/add_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_access_group_id": "55efa954-2b84-42af-8d05-fc1f892df51c",
"acs_user_id": "ebf54c67-746c-471f-a03f-86665148a84c"
}
EOFOutput:
{}Adds a specified access system user to a specified access group.
Code:
seam.acs.access_groups.add_user(
acs_access_group_id="55efa954-2b84-42af-8d05-fc1f892df51c",
acs_user_id="ebf54c67-746c-471f-a03f-86665148a84c",
)Output:
NoneAdds a specified access system user to a specified access group.
Code:
seam.acs.access_groups.add_user(
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
acs_user_id: "ebf54c67-746c-471f-a03f-86665148a84c",
)Output:
nilAdds a specified access system user to a specified access group.
Code:
$seam->acs->access_groups->add_user(
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
acs_user_id: "ebf54c67-746c-471f-a03f-86665148a84c"
);Output:
Adds a specified access system user to a specified access group.
Code:
seam acs access-groups add-user --acs_access_group_id "55efa954-2b84-42af-8d05-fc1f892df51c" --acs_user_id "ebf54c67-746c-471f-a03f-86665148a84c"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
ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id.
user_identity_id String
ID of the desired user identity that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id. If the ACS system contains an ACS user with the same email_address or phone_number as the user identity that you specify, they are linked, and the access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.
Response
void
Examples
Add a user identity to an access group
Adds a specified access system user to a specified access group, using the associated user identity.
Code:
await seam.acs.accessGroups.addUser({
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
user_identity_id: "522d1368-973f-430f-92df-4ff3583ebccf",
});Output:
// voidCode:
curl --include --request POST "https://connect.getseam.com/acs/access_groups/add_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_access_group_id": "55efa954-2b84-42af-8d05-fc1f892df51c",
"user_identity_id": "522d1368-973f-430f-92df-4ff3583ebccf"
}
EOFOutput:
{}Code:
seam.acs.access_groups.add_user(
acs_access_group_id="55efa954-2b84-42af-8d05-fc1f892df51c",
user_identity_id="522d1368-973f-430f-92df-4ff3583ebccf",
)Output:
NoneCode:
seam.acs.access_groups.add_user(
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
user_identity_id: "522d1368-973f-430f-92df-4ff3583ebccf",
)Output:
nilCode:
$seam->acs->access_groups->add_user(
acs_access_group_id: "55efa954-2b84-42af-8d05-fc1f892df51c",
user_identity_id: "522d1368-973f-430f-92df-4ff3583ebccf"
);Output:
Code:
seam acs access-groups add-user --acs_access_group_id "55efa954-2b84-42af-8d05-fc1f892df51c" --user_identity_id "522d1368-973f-430f-92df-4ff3583ebccf"Output:
{}Last updated
Was this helpful?

