{ "opencollection": "1.0.0", "info": { "name": "ChargeDesk REST Charges Products API", "version": "v1" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Products", "type": "folder" }, "items": [ { "info": { "name": "List all products", "type": "http" }, "http": { "method": "GET", "url": "https://api.chargedesk.com/v1/products", "params": [ { "name": "count", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "List all products" }, { "info": { "name": "Create a product", "type": "http" }, "http": { "method": "POST", "url": "https://api.chargedesk.com/v1/products", "body": { "type": "form-urlencoded", "data": [] } }, "docs": "Create a product" }, { "info": { "name": "Retrieve a product", "type": "http" }, "http": { "method": "GET", "url": "https://api.chargedesk.com/v1/products/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path", "description": "Unique product identifier" } ] }, "docs": "Retrieve a product" }, { "info": { "name": "Update a product", "type": "http" }, "http": { "method": "POST", "url": "https://api.chargedesk.com/v1/products/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path", "description": "Unique product identifier" } ], "body": { "type": "form-urlencoded", "data": [] } }, "docs": "Update a product" } ] } ], "bundled": true }