{ "opencollection": "1.0.0", "info": { "name": "Honeycomb Auth Key Management API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-Honeycomb-Team", "value": "{{X-Honeycomb-Team}}", "placement": "header" } }, "items": [ { "info": { "name": "Key Management", "type": "folder" }, "items": [ { "info": { "name": "List all API keys", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/api_keys" }, "docs": "Returns a list of all API keys for the team." }, { "info": { "name": "Create an API key", "type": "http" }, "http": { "method": "POST", "url": "https://api.honeycomb.io/1/api_keys", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new API key for the team with specified permissions and environment scope." }, { "info": { "name": "Get an API key", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/api_keys/:keyId", "params": [ { "name": "keyId", "value": "", "type": "path", "description": "The unique identifier for the API key." } ] }, "docs": "Returns a single API key by its ID." }, { "info": { "name": "Update an API key", "type": "http" }, "http": { "method": "PUT", "url": "https://api.honeycomb.io/1/api_keys/:keyId", "params": [ { "name": "keyId", "value": "", "type": "path", "description": "The unique identifier for the API key." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an API key's name, permissions, or configuration." }, { "info": { "name": "Delete an API key", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.honeycomb.io/1/api_keys/:keyId", "params": [ { "name": "keyId", "value": "", "type": "path", "description": "The unique identifier for the API key." } ] }, "docs": "Deletes an API key." } ] } ], "bundled": true }