Remove an ACS User from a User Identity

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

Specify the desired acs_user_id and user_identity_id.

Code

await seam.userIdentities.removeAcsUser({
  user_identity_id: "5c945ab5-c75e-4bcb-8e5f-9410061c401f",
  acs_user_id: "c0184e54-0d93-4bca-8a4e-47bbd2ee3bfe",
});

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_user_id String (Required)

ID of the access system user that you want to remove from the user identity..


user_identity_id String (Required)

ID of the user identity from which you want to remove an access system user.


Response

void


Examples

Last updated

Was this helpful?