{ "opencollection": "1.0.0", "info": { "name": "Neon CRM API v2 Accounts Orders API", "version": "2.11" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Orders", "type": "folder" }, "items": [ { "info": { "name": "Create an order", "type": "http" }, "http": { "method": "POST", "url": "https://api.neoncrm.com/v2/orders", "body": { "type": "json", "data": "{}" } }, "docs": "Orders group multiple donations, memberships, and store purchases in a single transaction. Introduced in API v2.1." }, { "info": { "name": "Retrieve an order", "type": "http" }, "http": { "method": "GET", "url": "https://api.neoncrm.com/v2/orders/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the order." } ] }, "docs": "Retrieve an order" }, { "info": { "name": "Delete an order", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.neoncrm.com/v2/orders/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the order." } ] }, "docs": "Delete an order" }, { "info": { "name": "Calculate the total of a prospective order", "type": "http" }, "http": { "method": "POST", "url": "https://api.neoncrm.com/v2/orders/calculate", "body": { "type": "json", "data": "{}" } }, "docs": "Calculate the total of a prospective order" }, { "info": { "name": "Search orders", "type": "http" }, "http": { "method": "POST", "url": "https://api.neoncrm.com/v2/orders/search", "body": { "type": "json", "data": "{}" } }, "docs": "Rate-limited to 1 simultaneous request." }, { "info": { "name": "List available shipping methods for an order", "type": "http" }, "http": { "method": "POST", "url": "https://api.neoncrm.com/v2/orders/shippingMethods", "body": { "type": "json", "data": "{}" } }, "docs": "List available shipping methods for an order" }, { "info": { "name": "Add a payment to an order (checkout)", "type": "http" }, "http": { "method": "POST", "url": "https://api.neoncrm.com/v2/orders/:orderId/payments", "params": [ { "name": "orderId", "value": "", "type": "path", "description": "The ID of the order." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a payment to an order (checkout)" } ] } ], "bundled": true }