List ACS Users
POST /acs/users/list ⇒ { acs_users: [acs_user, …] }Returns a list of all ACS users.
Request
await seam.acs.users.list();Response
{
"acs_user_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_system_id": "123e4567-e89b-12d3-a456-426614174000",
"workspace_id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2024-04-05T07:57:05.323Z",
"display_name": "Jane Doe",
"full_name": "Jane Doe",
"email_address": "[email protected]",
"phone_number": "+15555550100"
}Request
seam.acs.users.list()Response
AcsUser(
acs_user_id="123e4567-e89b-12d3-a456-426614174000",
acs_system_id="123e4567-e89b-12d3-a456-426614174000",
workspace_id="123e4567-e89b-12d3-a456-426614174000",
created_at="2024-04-05T07:57:05.323Z",
display_name="Jane Doe",
full_name="Jane Doe",
email_address="[email protected]",
phone_number="+15555550100",
)Request
seam.acs.users.list()Response
{
"acs_user_id" => "123e4567-e89b-12d3-a456-426614174000",
"acs_system_id" => "123e4567-e89b-12d3-a456-426614174000",
"workspace_id" => "123e4567-e89b-12d3-a456-426614174000",
"created_at" => "2024-04-05T07:57:05.323Z",
"display_name" => "Jane Doe",
"full_name" => "Jane Doe",
"email_address" => "[email protected]",
"phone_number" => "+15555550100",
}Request
<?php
$seam->acs->users->list();Response
<?php
[
"acs_user_id" => "123e4567-e89b-12d3-a456-426614174000",
"acs_system_id" => "123e4567-e89b-12d3-a456-426614174000",
"workspace_id" => "123e4567-e89b-12d3-a456-426614174000",
"created_at" => "2024-04-05T07:57:05.323Z",
"display_name" => "Jane Doe",
"full_name" => "Jane Doe",
"email_address" => "[email protected]",
"phone_number" => "+15555550100",
];Request
seam acs users listResponse
{
"acs_user_id": "123e4567-e89b-12d3-a456-426614174000",
"acs_system_id": "123e4567-e89b-12d3-a456-426614174000",
"workspace_id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2024-04-05T07:57:05.323Z",
"display_name": "Jane Doe",
"full_name": "Jane Doe",
"email_address": "[email protected]",
"phone_number": "+15555550100"
}Request
package main
func main() {
client.Acs.Users.List(context.Background())
}Response
api.AcsUser{AcsUserId: "123e4567-e89b-12d3-a456-426614174000", AcsSystemId: "123e4567-e89b-12d3-a456-426614174000", WorkspaceId: "123e4567-e89b-12d3-a456-426614174000", CreatedAt: "2024-04-05T07:57:05.323Z", DisplayName: "Jane Doe", FullName: "Jane Doe", EmailAddress: "[email protected]", PhoneNumber: "+15555550100"}Authentication Methods
API key
Client session token
Personal access token Must also include the
seam-workspaceheader in the request.
Request Parameters
acs_system_id
acs_system_idType: string Required: No
ID of the acs_system for which you want to retrieve all acs_users.
created_before
created_beforeType: string Required: No
limit
limitType: number Required: No
Maximum number of records to return per page.
page_cursor
page_cursorType: string Required: No
Identifies the specific page of results to return, obtained from the previous page's next_page_cursor.
search
searchType: string Required: No
String for which to search. Filters returned acs_users to include all records that satisfy a partial match using full_name, phone_number, or email_address.
user_identity_email_address
user_identity_email_addressType: string Required: No
Email address of the user identity for which you want to retrieve all acs_users.
user_identity_id
user_identity_idType: string Required: No
ID of the user identity for which you want to retrieve all acs_users.
user_identity_phone_number
user_identity_phone_numberType: string Required: No
Phone number of the user identity for which you want to retrieve all acs_users, in E.164 format (for example, +15555550100).
Return Type
Array<acs_user>
Last updated
Was this helpful?

