Get an ACS User
POST /acs/users/get ⇒ { acs_user }
Returns a specified ACS user.
Request
await seam.acs.users.get({
acs_user_id: "8d7e0b3a-b889-49a7-9164-4b71a0506a33",
});
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"
}
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
.
Return Type
Last updated
Was this helpful?