Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Api Keys endpoints
Update an API key
PATCH
/
api-keys
/
{apiKeyId}
curl --request PATCH \
--url https://api.eu.bronto.io/api-keys/{apiKeyId} \
--header 'Content-Type: application/json' \
--header 'X-BRONTO-API-KEY: <api-key>' \
--data '{
"name": "Production API Key",
"roles": [
"IngestionApi"
]
}'
This response does not have an example.
Authorizations
Path Parameters
The ID of the API key to update
Body
application/json
Response
200
API key updated successfully
curl --request PATCH \
--url https://api.eu.bronto.io/api-keys/{apiKeyId} \
--header 'Content-Type: application/json' \
--header 'X-BRONTO-API-KEY: <api-key>' \
--data '{
"name": "Production API Key",
"roles": [
"IngestionApi"
]
}'
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.