User endpoints
Get a single user by ID
GET
Authorizations
Path Parameters
The unique identifier of the user to retrieve
Response
200
application/json
User details retrieved successfully
The unique identifier for the user
The user's first name
Example:
"John"
The user's last name
Example:
"Doe"
The user's email address
Example:
"john@company.com"
A list of role ids
Example:
["ReadOnly", "Standard"]
A map of login methods to their last login timestamps (Unix epoch).
Example:
{
"Okta": 1731370728,
"Password": 1731338939
}
A map of key value pairs associated with this log
Example:
{
"region": "eu",
"environment": "production"
}