Get a User Identity
Returns a specified user identity.
Returns a specified user identity, using a user identity ID.
Code
await seam.userIdentities.get({
user_identity_id: "43947360-cdc8-4db6-8b22-e079416d1d8b",
});
Output
{
"created_at": "2025-06-16T16:54:17.946546Z",
"display_name": "Jane Doe",
"email_address": "[email protected]",
"errors": [],
"full_name": "Jane Doe",
"phone_number": "+1555551002",
"user_identity_id": "43947360-cdc8-4db6-8b22-e079416d1d8b",
"user_identity_key": "jane_doe",
"warnings": [],
"workspace_id": "b7e0a4e0-1044-4319-9a0b-42b642b68c7f"
}
Request Parameters
user_identity_id
String
ID of the user identity that you want to get.
user_identity_key
String
Response
{
"created_at": "2025-06-16T16:54:17.946546Z",
"display_name": "Jane Doe",
"email_address": "[email protected]",
"errors": [],
"full_name": "Jane Doe",
"phone_number": "+1555551002",
"user_identity_id": "43947360-cdc8-4db6-8b22-e079416d1d8b",
"user_identity_key": "jane_doe",
"warnings": [],
"workspace_id": "b7e0a4e0-1044-4319-9a0b-42b642b68c7f"
}
Examples
Get a user identity by user identity key
Returns a specified user identity, using a user identity key.
Code
await seam.userIdentities.get({ user_identity_key: "jane_doe" });
Output
{
"created_at": "2025-06-16T16:54:17.946546Z",
"display_name": "Jane Doe",
"email_address": "[email protected]",
"errors": [],
"full_name": "Jane Doe",
"phone_number": "+1555551002",
"user_identity_id": "43947360-cdc8-4db6-8b22-e079416d1d8b",
"user_identity_key": "jane_doe",
"warnings": [],
"workspace_id": "b7e0a4e0-1044-4319-9a0b-42b642b68c7f"
}
Last updated
Was this helpful?