{ "opencollection": "1.0.0", "info": { "name": "Tap Payments Authorize Invoices API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Invoices", "type": "folder" }, "items": [ { "info": { "name": "List all invoices", "type": "http" }, "http": { "method": "GET", "url": "https://api.tap.company/v2/invoices" }, "docs": "Lists invoices in the account." }, { "info": { "name": "Create an invoice", "type": "http" }, "http": { "method": "POST", "url": "https://api.tap.company/v2/invoices", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a hosted invoice that produces a payable link delivered by email or SMS. Carries line items, currency, due date, and customer details." }, { "info": { "name": "Retrieve an invoice", "type": "http" }, "http": { "method": "GET", "url": "https://api.tap.company/v2/invoices/:invoice_id", "params": [ { "name": "invoice_id", "value": "", "type": "path", "description": "The id of the invoice." } ] }, "docs": "Retrieves an invoice by id." }, { "info": { "name": "Update an invoice", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tap.company/v2/invoices/:invoice_id", "params": [ { "name": "invoice_id", "value": "", "type": "path", "description": "The id of the invoice." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing invoice." } ] } ], "bundled": true }