{ "opencollection": "1.0.0", "info": { "name": "FastSpring Accounts Quotes API", "version": "1.0.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Quotes", "type": "folder" }, "items": [ { "info": { "name": "List quotes", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastspring.com/quotes" }, "docs": "List quotes" }, { "info": { "name": "Create a quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.fastspring.com/quotes", "body": { "type": "json", "data": "{}" } }, "docs": "Create a quote" }, { "info": { "name": "Retrieve a quote", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastspring.com/quotes/:quote_id", "params": [ { "name": "quote_id", "value": "", "type": "path" } ] }, "docs": "Retrieve a quote" }, { "info": { "name": "Update a quote", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.fastspring.com/quotes/:quote_id", "params": [ { "name": "quote_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a quote" }, { "info": { "name": "Cancel a quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.fastspring.com/quotes/:quote_id/cancel", "params": [ { "name": "quote_id", "value": "", "type": "path" } ] }, "docs": "Cancel a quote" } ] } ], "bundled": true }