Add an ACS User to a User Identity
Adds a specified access system user to a specified user identity.
Specify the desired acs_user_id
and user_identity_id
.
Code
await seam.userIdentities.addAcsUser({
user_identity_id: "48500a8e-5e7e-4bde-b7e5-0be97cae5d7a",
acs_user_id: "4d223973-0874-4831-8630-bfcb29e6bce0",
});
Output
// void
Request Parameters
acs_user_id
String (Required)
ID of the access system user that you want to add to the user identity.
user_identity_id
String (Required)
ID of the user identity to which you want to add an access system user.
Response
void
Examples
Last updated
Was this helpful?