{ "opencollection": "1.0.0", "info": { "name": "Webhook Subscription API", "version": "1.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.staging.leap.energy/v1.1/webhooks" }, "docs": "List existing webhooks." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.staging.leap.energy/v1.1/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new webhook to receive event notifications." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.staging.leap.energy/v1.1/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The ID of the webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing webhook identified by webhook_id. NOTE: using this endpoint will overwrite all existing settings for the specified webhook_id." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.staging.leap.energy/v1.1/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The ID of the webhook." } ] }, "docs": "Delete an existing webhook identified by webhook_id." }, { "info": { "name": "Test a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.staging.leap.energy/v1.1/webhooks/:webhook_id/test", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The ID of the webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Send a test event to the configured receiver_url for the specified webhook_id." } ] } ], "bundled": true }