Add an ACS User to a User Identity
PUT /user_identities/add_acs_user ⇒ void
Adds a specified ACS user to a specified user identity.
Request
await seam.userIdentities.addAcsUser({
user_identity_id: "48500a8e-5e7e-4bde-b7e5-0be97cae5d7a",
acs_user_id: "4d223973-0874-4831-8630-bfcb29e6bce0",
});
Response
// void
Authentication Methods
API key
Personal access token Must also include the
seam-workspace
header in the request.
Request Parameters
acs_user_id
acs_user_id
Type: string
Required: Yes
ID of the desired ACS user.
user_identity_id
user_identity_id
Type: string
Required: Yes
ID of the desired user identity.
Return Type
void
Last updated
Was this helpful?