{ "opencollection": "1.0.0", "info": { "name": "Finix Authorizations Webhooks API", "version": "2022-02-01" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List Webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://finix.sandbox-payments-api.com/webhooks", "params": [ { "name": "limit", "value": "10", "type": "query", "description": "The numbers of items to return." }, { "name": "after_cursor", "value": "", "type": "query", "description": "Return every resource created after the cursor value." }, { "name": "before_cursor", "value": "", "type": "query", "description": "Return every resource created before the cursor value." } ] }, "docs": "Retrieve a list of `Webhooks`." }, { "info": { "name": "Create a Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://finix.sandbox-payments-api.com/webhooks", "headers": [ { "name": "Finix-Version", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a `Webhook` to specify an endpoint where Finix can send events." }, { "info": { "name": "Fetch a Webhook", "type": "http" }, "http": { "method": "GET", "url": "https://finix.sandbox-payments-api.com/webhooks/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "ID of `Webhook` object." } ] }, "docs": "Retrieve the details of a `Webhook`." }, { "info": { "name": "Update a Webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://finix.sandbox-payments-api.com/webhooks/:webhook_id", "headers": [ { "name": "Finix-Version", "value": "" } ], "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "ID of `Webhook` object." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing `Webhook`to:\n- Disable or enable an endpoint URL to recieve webhook events.\n- Add [authentication to a `Webhook`](/guides/developers/webhooks/#authenticating-webhooks).\n- Filter the [webhook events sent to an endpoint URL](/guides/developers/webhooks/#webhook-event-filtering)." } ] } ], "bundled": true }