{ "opencollection": "1.0.0", "info": { "name": "Upvest Investment Account Transfers Accounts API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "Upvest List accounts for a user", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/users/:user_id/accounts", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The unique identifier of the user." } ] }, "docs": "Retrieve all investment accounts belonging to a specific user." }, { "info": { "name": "Upvest List accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/accounts", "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." } ] }, "docs": "Retrieve a paginated list of all investment accounts." }, { "info": { "name": "Upvest Create an account", "type": "http" }, "http": { "method": "POST", "url": "https://api.upvest.co/accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Open a new investment account for a user." }, { "info": { "name": "Upvest Retrieve an account", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/accounts/:account_id", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "The unique identifier of the account." } ] }, "docs": "Retrieve details for a specific investment account." }, { "info": { "name": "Upvest Update an account", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.upvest.co/accounts/:account_id", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "The unique identifier of the account." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update metadata or settings for an existing investment account." }, { "info": { "name": "Upvest Close an account", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.upvest.co/accounts/:account_id", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "The unique identifier of the account." } ] }, "docs": "Close an investment account. The account must have no open positions or pending orders." } ] } ], "bundled": true }