Users
Retrieve a user
Retrieves the user with the given ID.
GET
/
users
/
{user_id}
Path Parameters
user_id
string
requiredThe unique identifier of the user
Response
200 - application/json
<p>Represents a user of your project.</p>
id
string
requiredThe unique identifier of the user
object
enum<string>
requiredThe type of the User
object
Available options:
user
created_at
integer
requiredThe time at which the object was created, measured in milliseconds since the Unix epoch
external_id
string
requiredA string that uniquely identifies the user within your project. Ensure that this is the ID that you use to identify the user in your system e.g. database ID, Firebase Auth ID etc. Failing to do so may cause unexpected bugs and errors in your application.
first_name
string
requiredThe first name of the user.
last_name
string
requiredThe last name of the user.
live_mode
boolean
requiredWhether the user exists in live mode. This will be false
if the user is a test user.
updated_at
integer
requiredThe time at which the object was last updated, measured in milliseconds since the Unix epoch