Remove an ACS User from an Access Group
Removes a specified access system user from a specified access group.
Removes a specified access system user from a specified access group, using the associated user identity.
Code:
await seam.acs.accessGroups.removeUser({
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
user_identity_id: "3d662a00-5d7c-41b4-aee7-16c385964149",
});Output:
// voidRemoves a specified access system user from a specified access group, using the associated user identity.
Code:
curl --include --request POST "https://connect.getseam.com/acs/access_groups/remove_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_access_group_id": "e320069d-59ba-4adb-a465-f4f01a833e07",
"user_identity_id": "3d662a00-5d7c-41b4-aee7-16c385964149"
}
EOFOutput:
{}Removes a specified access system user from a specified access group, using the associated user identity.
Code:
seam.acs.access_groups.remove_user(
acs_access_group_id="e320069d-59ba-4adb-a465-f4f01a833e07",
user_identity_id="3d662a00-5d7c-41b4-aee7-16c385964149",
)Output:
NoneRemoves a specified access system user from a specified access group, using the associated user identity.
Code:
seam.acs.access_groups.remove_user(
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
user_identity_id: "3d662a00-5d7c-41b4-aee7-16c385964149",
)Output:
nilRemoves a specified access system user from a specified access group, using the associated user identity.
Code:
$seam->acs->access_groups->remove_user(
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
user_identity_id: "3d662a00-5d7c-41b4-aee7-16c385964149"
);Output:
Removes a specified access system user from a specified access group, using the associated user identity.
Code:
seam acs access-groups remove-user --acs_access_group_id "e320069d-59ba-4adb-a465-f4f01a833e07" --user_identity_id "3d662a00-5d7c-41b4-aee7-16c385964149"Output:
{}Request Parameters
acs_access_group_id String (Required)
ID of the access group from which you want to remove an access system user.
acs_user_id String
ID of the access system user that you want to remove from an access group.
user_identity_id String
ID of the user identity associated with the user that you want to remove from an access group.
Response
void
Examples
Remove an access system user from an access group
Removes a specified access system user from a specified access group.
Code:
await seam.acs.accessGroups.removeUser({
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
acs_user_id: "64cfac1f-61c0-4c76-8fa2-3e9ab680edc8",
});Output:
// voidCode:
curl --include --request POST "https://connect.getseam.com/acs/access_groups/remove_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"acs_access_group_id": "e320069d-59ba-4adb-a465-f4f01a833e07",
"acs_user_id": "64cfac1f-61c0-4c76-8fa2-3e9ab680edc8"
}
EOFOutput:
{}Code:
seam.acs.access_groups.remove_user(
acs_access_group_id="e320069d-59ba-4adb-a465-f4f01a833e07",
acs_user_id="64cfac1f-61c0-4c76-8fa2-3e9ab680edc8",
)Output:
NoneCode:
seam.acs.access_groups.remove_user(
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
acs_user_id: "64cfac1f-61c0-4c76-8fa2-3e9ab680edc8",
)Output:
nilCode:
$seam->acs->access_groups->remove_user(
acs_access_group_id: "e320069d-59ba-4adb-a465-f4f01a833e07",
acs_user_id: "64cfac1f-61c0-4c76-8fa2-3e9ab680edc8"
);Output:
Code:
seam acs access-groups remove-user --acs_access_group_id "e320069d-59ba-4adb-a465-f4f01a833e07" --acs_user_id "64cfac1f-61c0-4c76-8fa2-3e9ab680edc8"Output:
{}Last updated
Was this helpful?

