{ "opencollection": "1.0.0", "info": { "name": "SimpleLegal Cost Codes Invoices API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Invoices", "type": "folder" }, "items": [ { "info": { "name": "List Invoices", "type": "http" }, "http": { "method": "GET", "url": "https://app.simplelegal.com/api/v1/invoices", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number." }, { "name": "page_size", "value": "", "type": "query", "description": "Results per page." }, { "name": "status", "value": "", "type": "query", "description": "Filter by invoice status." }, { "name": "matter_id", "value": "", "type": "query", "description": "Filter invoices by matter ID." }, { "name": "vendor_id", "value": "", "type": "query", "description": "Filter invoices by vendor ID." } ] }, "docs": "Retrieve a paginated list of invoices." }, { "info": { "name": "Create Invoice", "type": "http" }, "http": { "method": "POST", "url": "https://app.simplelegal.com/api/v1/invoices", "body": { "type": "json", "data": "{}" } }, "docs": "Submit a new invoice for processing." }, { "info": { "name": "Get Invoice", "type": "http" }, "http": { "method": "GET", "url": "https://app.simplelegal.com/api/v1/invoices/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Invoice ID." } ] }, "docs": "Retrieve a specific invoice by ID." }, { "info": { "name": "Update Invoice", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.simplelegal.com/api/v1/invoices/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Invoice ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update fields on an existing invoice." } ] } ], "bundled": true }