Api Keys endpoints
Retrieve a list of API keys
Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Api Keys endpoints
Retrieve a list of API keys
GET
/
api-keys
curl --request GET \
--url https://api.eu.bronto.io/api-keys \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"api_keys": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Production API Key",
"created_at": 1710948395538,
"api_key": "2ad85149",
"roles": [
"SearchApi",
"IngestionApi"
],
"tags": {
"region": "eu",
"environment": "production"
}
}
]
}
Authorizations
Response
200
application/json
A list of API keys
The unique identifier for the API key
The name of the API key
Example:
"Production API Key"
The timestamp when the API key was created
Example:
1710948395538
The first 8 characters of the API key. Note its not possible to retrieve the key after creation time.
Example:
"2ad85149"
A list of api key role ids
Example:
["SearchApi", "IngestionApi"]
curl --request GET \
--url https://api.eu.bronto.io/api-keys \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"api_keys": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Production API Key",
"created_at": 1710948395538,
"api_key": "2ad85149",
"roles": [
"SearchApi",
"IngestionApi"
],
"tags": {
"region": "eu",
"environment": "production"
}
}
]
}