githubEdit

Remove an ACS User from an Access Group

Removes a specified access system userarrow-up-right from a specified access grouparrow-up-right.

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
chevron-rightAuthentication Methodshashtag
  • API key

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

To learn more, see Authenticationarrow-up-right.

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

circle-check

Examples

Remove an access system user from an access group

Removes a specified access system user from a specified access group.

Code:

Output:

Last updated

Was this helpful?