{ "opencollection": "1.0.0", "info": { "name": "Recurrency E-Procurement Orders API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.recurrency.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Orders", "type": "folder" }, "items": [ { "info": { "name": "List orders and quotes", "type": "http" }, "http": { "method": "GET", "url": "https://api.recurrency.com/orders", "params": [ { "name": "customerId", "value": "", "type": "query", "description": "Filter orders by customer identifier." } ] }, "docs": "Retrieve the list of orders/quotes, optionally filtered by customer." }, { "info": { "name": "Create an order or quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.recurrency.com/orders", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new sales order or quote with order details and line items." }, { "info": { "name": "Retrieve order details", "type": "http" }, "http": { "method": "GET", "url": "https://api.recurrency.com/order-details/:salesOrderId", "params": [ { "name": "salesOrderId", "value": "", "type": "path" } ] }, "docs": "Retrieve comprehensive details for a single sales order, including line items, addresses and financials." } ] } ], "bundled": true }