Get an ACS User
Returns a specified access system user.
POST /acs/users/get β { acs_user }
Request Parameters
acs_system_id
String
ID of the access system that you want to get. You can only provide acs_user_id or user_identity_id.
acs_user_id
String
ID of the access system user that you want to get. You can only provide acs_user_id or user_identity_id.
user_identity_id
String
ID of the user identity that you want to get. You can only provide acs_user_id or user_identity_id.
Response
{
JSON representation of acs_user
}
Examples
Get a specific ACS user
Specify the acs_user_id
of the specific ACS user to retrieve.
Code
await seam.acs.users.get({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
});
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": "[email protected]",
"phone_number": "+15555550100"
}
Last updated
Was this helpful?