{ "opencollection": "1.0.0", "info": { "name": "sevdesk CheckAccount Invoice API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Invoice", "type": "folder" }, "items": [ { "info": { "name": "Retrieve invoices", "type": "http" }, "http": { "method": "GET", "url": "https://my.sevdesk.de/api/v1/Invoice", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Limits the number of entries returned." }, { "name": "offset", "value": "", "type": "query", "description": "Number of entries to skip for pagination." }, { "name": "embed", "value": "", "type": "query", "description": "Comma-separated list of nested resources to embed fully in the response instead of returning only their id and objectName." } ] }, "docs": "Retrieves a list of invoices." }, { "info": { "name": "Find invoice by ID", "type": "http" }, "http": { "method": "GET", "url": "https://my.sevdesk.de/api/v1/Invoice/:invoiceId", "params": [ { "name": "invoiceId", "value": "", "type": "path", "description": "The ID of the invoice." } ] }, "docs": "Retrieves a single invoice by its ID." }, { "info": { "name": "Create a new invoice", "type": "http" }, "http": { "method": "POST", "url": "https://my.sevdesk.de/api/v1/Invoice/Factory/saveInvoice", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new invoice together with its positions in a single call using the saveInvoice factory endpoint." }, { "info": { "name": "Retrieve pdf document of an invoice", "type": "http" }, "http": { "method": "GET", "url": "https://my.sevdesk.de/api/v1/Invoice/:invoiceId/getPdf", "params": [ { "name": "invoiceId", "value": "", "type": "path", "description": "The ID of the invoice." } ] }, "docs": "Returns the rendered PDF document for an invoice." }, { "info": { "name": "Send invoice via email", "type": "http" }, "http": { "method": "POST", "url": "https://my.sevdesk.de/api/v1/Invoice/:invoiceId/sendViaEmail", "params": [ { "name": "invoiceId", "value": "", "type": "path", "description": "The ID of the invoice." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Sends the invoice to a recipient by email." } ] } ], "bundled": true }