{ "opencollection": "1.0.0", "info": { "name": "Tabs Platform Catalog Contracts API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Contracts", "type": "folder" }, "items": [ { "info": { "name": "List contracts", "type": "http" }, "http": { "method": "GET", "url": "https://api.tabsplatform.com/contracts" }, "docs": "List contracts" }, { "info": { "name": "Create a contract", "type": "http" }, "http": { "method": "POST", "url": "https://api.tabsplatform.com/contracts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a contract. Tabs can also ingest an executed contract document and use AI extraction to derive billing terms and obligations; this endpoint accepts the structured contract representation." }, { "info": { "name": "Get a contract", "type": "http" }, "http": { "method": "GET", "url": "https://api.tabsplatform.com/contracts/:contractId", "params": [ { "name": "contractId", "value": "", "type": "path" } ] }, "docs": "Get a contract" }, { "info": { "name": "Update a contract", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tabsplatform.com/contracts/:contractId", "params": [ { "name": "contractId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a contract" }, { "info": { "name": "Upload a contract file", "type": "http" }, "http": { "method": "POST", "url": "https://api.tabsplatform.com/contracts/:contractId/files", "params": [ { "name": "contractId", "value": "", "type": "path" } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" } ] } }, "docs": "Upload the executed contract document for AI ingestion and record-keeping." }, { "info": { "name": "List obligations for a contract", "type": "http" }, "http": { "method": "GET", "url": "https://api.tabsplatform.com/contracts/:contractId/obligations", "params": [ { "name": "contractId", "value": "", "type": "path" } ] }, "docs": "List obligations for a contract" }, { "info": { "name": "Create an obligation on a contract", "type": "http" }, "http": { "method": "POST", "url": "https://api.tabsplatform.com/contracts/:contractId/obligations", "params": [ { "name": "contractId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create an obligation on a contract" } ] } ], "bundled": true }