{ "opencollection": "1.0.0", "info": { "name": "Honeycomb Auth Columns API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-Honeycomb-Team", "value": "{{X-Honeycomb-Team}}", "placement": "header" } }, "items": [ { "info": { "name": "Columns", "type": "folder" }, "items": [ { "info": { "name": "List all columns", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/columns/:datasetSlug", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." } ] }, "docs": "Returns a list of all columns in the specified dataset." }, { "info": { "name": "Create a column", "type": "http" }, "http": { "method": "POST", "url": "https://api.honeycomb.io/1/columns/:datasetSlug", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new column in the specified dataset." }, { "info": { "name": "Get a column", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/columns/:datasetSlug/:columnId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "columnId", "value": "", "type": "path", "description": "The unique identifier for the column." } ] }, "docs": "Returns a single column by its ID." }, { "info": { "name": "Update a column", "type": "http" }, "http": { "method": "PUT", "url": "https://api.honeycomb.io/1/columns/:datasetSlug/:columnId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "columnId", "value": "", "type": "path", "description": "The unique identifier for the column." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the properties of a column in the specified dataset." }, { "info": { "name": "Delete a column", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.honeycomb.io/1/columns/:datasetSlug/:columnId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "columnId", "value": "", "type": "path", "description": "The unique identifier for the column." } ] }, "docs": "Deletes a column from the specified dataset." } ] } ], "bundled": true }