{ "opencollection": "1.0.0", "info": { "name": "Octobat Coupons Customers API", "version": "2.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "List customers", "type": "http" }, "http": { "method": "GET", "url": "https://apiv2.octobat.com/customers" }, "docs": "List customers" }, { "info": { "name": "Create a customer", "type": "http" }, "http": { "method": "POST", "url": "https://apiv2.octobat.com/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a customer with billing and tax details. (Confirmed in Octobat docs.)" }, { "info": { "name": "Retrieve a customer", "type": "http" }, "http": { "method": "GET", "url": "https://apiv2.octobat.com/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve a customer" }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PATCH", "url": "https://apiv2.octobat.com/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a customer" }, { "info": { "name": "Delete a customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://apiv2.octobat.com/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a customer" } ] } ], "bundled": true }