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.users.removeFromAccessGroup({
user_identity_id: "00ff2781-cce8-4b63-8c65-2b97647d790c",
acs_access_group_id: "d192f395-4c68-4c33-af41-97a7df5be576",
});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/users/remove_from_access_group" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "00ff2781-cce8-4b63-8c65-2b97647d790c",
"acs_access_group_id": "d192f395-4c68-4c33-af41-97a7df5be576"
}
EOFOutput:
{}Removes a specified access system user from a specified access group, using the associated user identity.
Code:
Output:
Removes a specified access system user from a specified access group, using the associated user identity.
Code:
Output:
Removes a specified access system user from a specified access group, using the associated user identity.
Code:
Output:
Removes a specified access system user from a specified access group, using the associated user identity.
Code:
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. You can only provide acs_user_id or user_identity_id.
user_identity_id String
ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id.
Response
Returns: void
Examples
Remove an access system user from an access group
Removes a specified access system user from a specified access group.
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Code:
Output:
Last updated
Was this helpful?

