{ "opencollection": "1.0.0", "info": { "name": "Upvest Investment Account Transfers Orders API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Orders", "type": "folder" }, "items": [ { "info": { "name": "Upvest List orders", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/orders", "params": [ { "name": "offset", "value": "", "type": "query", "description": "The number of items to skip for pagination." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of items to return per page." }, { "name": "account_id", "value": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "type": "query", "description": "Filter orders by account identifier." }, { "name": "status", "value": "NEW", "type": "query", "description": "Filter orders by status." } ] }, "docs": "Retrieve a paginated list of orders. Supports filtering by account, status, and other criteria." }, { "info": { "name": "Upvest Place an order", "type": "http" }, "http": { "method": "POST", "url": "https://api.upvest.co/orders", "body": { "type": "json", "data": "{}" } }, "docs": "Place a new buy or sell order for a financial instrument. Orders are processed asynchronously and their status can be tracked via webhooks or polling." }, { "info": { "name": "Upvest Retrieve an order", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/orders/:order_id", "params": [ { "name": "order_id", "value": "", "type": "path", "description": "The unique identifier of the order." } ] }, "docs": "Retrieve details for a specific order including current status and execution information." } ] } ], "bundled": true }