{ "opencollection": "1.0.0", "info": { "name": "Tabby API Reference Checkout Webhooks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Retrieve all webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.tabby.ai/api/v1/webhooks", "headers": [ { "name": "X-Merchant-Code", "value": "" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves all registred webhooks." }, { "info": { "name": "Register a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.tabby.ai/api/v1/webhooks", "headers": [ { "name": "X-Merchant-Code", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new webhook" }, { "info": { "name": "Retrieve a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.tabby.ai/api/v1/webhooks/:id", "headers": [ { "name": "X-Merchant-Code", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves the specified webhook." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tabby.ai/api/v1/webhooks/:id", "headers": [ { "name": "X-Merchant-Code", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates the specified webhook." }, { "info": { "name": "Remove a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.tabby.ai/api/v1/webhooks/:id", "headers": [ { "name": "X-Merchant-Code", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Removes the specified webhook." } ] } ], "bundled": true }