List ACS Users
Returns a list of all access system users.
Code
Returns a list of all ACS users.
await seam.acs.users.list();
Output
{
"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": "jane@example.com",
"phone_number": "+15555550100"
}
Request Parameters
acs_system_id
String
ID of the acs_system
for which you want to retrieve all access system users.
created_before
String
Timestamp by which to limit returned access system users. Returns users created before this timestamp.
limit
Number
Maximum number of records to return per page.
page_cursor
String
Identifies the specific page of results to return, obtained from the previous page's next_page_cursor
.
search
String
String for which to search. Filters returned access system users to include all records that satisfy a partial match using full_name
, phone_number
, email_address
, acs_user_id
, user_identity_id
, user_identity_full_name
or user_identity_phone_number
.
user_identity_email_address
String
Email address of the user identity for which you want to retrieve all access system users.
user_identity_id
String
ID of the user identity for which you want to retrieve all access system users.
user_identity_phone_number
String
Phone number of the user identity for which you want to retrieve all access system users, in E.164 format (for example, +15555550100
).
Response
Array of acs_users
Examples
Last updated
Was this helpful?