{ "opencollection": "1.0.0", "info": { "name": "LaunchDarkly Relay Proxy Access Tokens Webhooks API", "version": "8.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8030/webhooks" }, "docs": "Returns a list of all webhooks configured in the LaunchDarkly account." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:8030/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook subscription that will receive HTTP POST notifications when changes occur in LaunchDarkly." }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8030/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "The unique identifier of a webhook." } ] }, "docs": "Returns a single webhook by its identifier." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PATCH", "url": "http://localhost:8030/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "The unique identifier of a webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a webhook using a JSON Patch representation." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:8030/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "The unique identifier of a webhook." } ] }, "docs": "Permanently deletes a webhook subscription." } ] } ], "bundled": true }