Users
Find a User
Find a user by ID
GET
Authorizations
Authentication header of the form Bearer: <token>
, where <token>
is either your public or private API key. See when to use which
Response
200
application/json
The user was successfully found
The ID of the user as defined in your own application
Example:
"d34daa11-3745-4ac0-880e-d4b4d51fe13f"
The date and time the user was created
Example:
"2024-01-01T00:00:00Z"
The date and time the user was last modified
Example:
"2024-01-01T00:00:00Z"
The properties of the user
Example:
{
"email": "john@doe.com",
"firstName": "John",
"lastName": "Doe",
"imageUrl": "https://example.com/john-doe.jpg"
}
Whether the user is a guest
Example:
false
The email address of the user
Example:
"john@doe.com"
The first name of the user
Example:
"John"
The last name of the user
Example:
"Doe"
The user's state in the Flows they have interacted with
The tracking events associated with the user
Example:
[
{
"event": "SignedUp",
"properties": {
"source": "landing-page",
"campaign": "summer-sale"
},
"createdAt": "2024-01-01T00:00:00Z"
}
]