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

// void
Authentication Methods
  • API key

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

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

// void

Last updated

Was this helpful?