User endpoints
Retrieve a list of users
Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
User endpoints
Retrieve a list of users
GET
/
users
curl --request GET \
--url https://api.eu.bronto.io/users \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"users": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "John",
"last_name": "Doe",
"email": "john@company.com",
"roles": [
"ReadOnly",
"Standard"
],
"last_logins": {
"Okta": 1731370728,
"Password": 1731338939
},
"tags": {
"region": "eu",
"environment": "production"
}
}
]
}
Authorizations
Response
200
application/json
A list of users
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).
Unix timestamp representing the last login time for the method.
Example:
{
"Okta": 1731370728,
"Password": 1731338939
}
curl --request GET \
--url https://api.eu.bronto.io/users \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"users": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "John",
"last_name": "Doe",
"email": "john@company.com",
"roles": [
"ReadOnly",
"Standard"
],
"last_logins": {
"Okta": 1731370728,
"Password": 1731338939
},
"tags": {
"region": "eu",
"environment": "production"
}
}
]
}