List ACS Users Associated with a User Identity

Returns a list of all ACS users assigned to a specified user identity.

POST /user_identities/list_acs_users β‡’ { acs_users: [acs_user, …] }
Authentication Methods
  • API key

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

To learn more, see Authentication.

Request Parameters

user_identity_id String (Required)

ID of the user identity for which you want to retrieve all ACS users.


Response

Array of acs_users

{
  JSON representation of acs_user
}

Examples

List ACS users for a user identity

Specify the desired user_identity_id.

Code

await seam.userIdentities.listAcsUsers({
  user_identity_id: "48500a8e-5e7e-4bde-b7e5-0be97cae5d7a",
});

Output

[
  {
    "acs_user_id": "4d223973-0874-4831-8630-bfcb29e6bce0",
    "display_name": "Jean Doe",
    "full_name": "Jean Doe",
    "email_address": "[email protected]",
    "acs_system_id": "8aaa5fa0-9381-4463-a0ed-85f9c1fbcef4",
    "workspace_id": "398d80b7-3f96-47c2-b85a-6f8ba21d07be",
    "created_at": "2024-01-11T05:45:41.349Z",
    "is_suspended": false,
    "user_identity_id": "48500a8e-5e7e-4bde-b7e5-0be97cae5d7a",
    "user_identity_email_address": "[email protected]",
    "user_identity_phone_number": "+15555550110"
  }
]

Last updated

Was this helpful?

Revision created

ci: Generate docs