Add an ACS User to a User Identity
Adds a specified access system user to a specified user identity.
You must specify either user_identity_id or user_identity_key to identify the user identity.
If user_identity_key is provided, but the user identity doesn't exist, a new user identity will be created automatically using information from the ACS user.
Adds a specified access system user to a specified user identity.
Code:
await seam.userIdentities.addAcsUser({
user_identity_id: "68dd3d7e-c90b-4c89-ad70-3e589014ed87",
acs_user_id: "d73f4706-67e3-419d-899e-ec957a75ee0c",
});Output:
// voidAdds a specified access system user to a specified user identity.
Code:
curl --include --request POST "https://connect.getseam.com/user_identities/add_acs_user" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "68dd3d7e-c90b-4c89-ad70-3e589014ed87",
"acs_user_id": "d73f4706-67e3-419d-899e-ec957a75ee0c"
}
EOFOutput:
{}Adds a specified access system user to a specified user identity.
Code:
seam.user_identities.add_acs_user(
user_identity_id="68dd3d7e-c90b-4c89-ad70-3e589014ed87",
acs_user_id="d73f4706-67e3-419d-899e-ec957a75ee0c",
)Output:
NoneAdds a specified access system user to a specified user identity.
Code:
seam.user_identities.add_acs_user(
user_identity_id: "68dd3d7e-c90b-4c89-ad70-3e589014ed87",
acs_user_id: "d73f4706-67e3-419d-899e-ec957a75ee0c",
)Output:
nilAdds a specified access system user to a specified user identity.
Code:
$seam->user_identities->add_acs_user(
user_identity_id: "68dd3d7e-c90b-4c89-ad70-3e589014ed87",
acs_user_id: "d73f4706-67e3-419d-899e-ec957a75ee0c"
);Output:
Adds a specified access system user to a specified user identity.
Code:
seam user-identities add-acs-user --user_identity_id "68dd3d7e-c90b-4c89-ad70-3e589014ed87" --acs_user_id "d73f4706-67e3-419d-899e-ec957a75ee0c"Output:
{}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
ID of the user identity to which you want to add an access system user.
user_identity_key String
Key of the user identity to which you want to add an access system user.
Response
void
Last updated
Was this helpful?

