Users
Identify a user
Associate traits and attributes with a user ID. Once identified, all future events with this user_id will be enriched with these attributes.
POST
TypeScript SDK
Documentation Index
Fetch the complete documentation index at: https://docs.seerstack.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Use your SeerStack API key as a Bearer token. You can find your API key in the SeerStack Dashboard under Settings > Developer.
Body
application/json
Your internal user ID. Use a stable identifier like a database primary key.
Example:
"user_123"
The user's email address.
Example:
The user's display name.
Example:
"Grace Hopper"
Custom attributes to associate with the user. These can be used for filtering in the dashboard.
Example:
{
"plan": "enterprise",
"team_size": 15,
"is_admin": true
}Response
User identified successfully
Indicates whether the operation was successful.
Example:
true
TypeScript SDK