{ "opencollection": "1.0.0", "info": { "name": "Codat Accounting Companies API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Companies", "type": "folder" }, "items": [ { "info": { "name": "List companies", "type": "http" }, "http": { "method": "GET", "url": "https://api.codat.io/companies", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (1-indexed)." }, { "name": "pageSize", "value": "", "type": "query", "description": "Number of records per page." }, { "name": "query", "value": "", "type": "query", "description": "Codat query language expression to filter results." }, { "name": "orderBy", "value": "", "type": "query", "description": "Field to order results by." } ] }, "docs": "Returns a list of your companies with pagination, search, and ordering." }, { "info": { "name": "Create company", "type": "http" }, "http": { "method": "POST", "url": "https://api.codat.io/companies", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new company that represents one of your customers." }, { "info": { "name": "Get company", "type": "http" }, "http": { "method": "GET", "url": "https://api.codat.io/companies/:companyId", "params": [ { "name": "companyId", "value": "", "type": "path", "description": "Unique identifier for a company." } ] }, "docs": "Get company" }, { "info": { "name": "Update company", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.codat.io/companies/:companyId", "params": [ { "name": "companyId", "value": "", "type": "path", "description": "Unique identifier for a company." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update company" }, { "info": { "name": "Delete company", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.codat.io/companies/:companyId", "params": [ { "name": "companyId", "value": "", "type": "path", "description": "Unique identifier for a company." } ] }, "docs": "Permanently deletes a company, its connections, and cached data." } ] } ], "bundled": true }