{ "opencollection": "1.0.0", "info": { "name": "Honeycomb Auth Triggers API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-Honeycomb-Team", "value": "{{X-Honeycomb-Team}}", "placement": "header" } }, "items": [ { "info": { "name": "Triggers", "type": "folder" }, "items": [ { "info": { "name": "List all triggers", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/triggers/: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 triggers for the specified dataset." }, { "info": { "name": "Create a trigger", "type": "http" }, "http": { "method": "POST", "url": "https://api.honeycomb.io/1/triggers/: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 trigger that fires when query results meet specified threshold conditions." }, { "info": { "name": "Get a trigger", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/triggers/:datasetSlug/:triggerId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "triggerId", "value": "", "type": "path", "description": "The unique identifier for the trigger." } ] }, "docs": "Returns a single trigger by its ID." }, { "info": { "name": "Update a trigger", "type": "http" }, "http": { "method": "PUT", "url": "https://api.honeycomb.io/1/triggers/:datasetSlug/:triggerId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "triggerId", "value": "", "type": "path", "description": "The unique identifier for the trigger." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a trigger's query, threshold, or notification settings." }, { "info": { "name": "Delete a trigger", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.honeycomb.io/1/triggers/:datasetSlug/:triggerId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The slug identifier for the dataset. Dataset names are case insensitive." }, { "name": "triggerId", "value": "", "type": "path", "description": "The unique identifier for the trigger." } ] }, "docs": "Deletes a trigger from the specified dataset." } ] } ], "bundled": true }