{ "opencollection": "1.0.0", "info": { "name": "Upvest Investment Account Transfers Portfolios API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Portfolios", "type": "folder" }, "items": [ { "info": { "name": "Upvest List portfolios", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/portfolios", "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 portfolios." }, { "info": { "name": "Upvest Create a portfolio", "type": "http" }, "http": { "method": "POST", "url": "https://api.upvest.co/portfolios", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new portfolio with a defined set of target allocations across instruments." }, { "info": { "name": "Upvest Retrieve a portfolio", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/portfolios/:portfolio_id", "params": [ { "name": "portfolio_id", "value": "", "type": "path", "description": "The unique identifier of the portfolio." } ] }, "docs": "Retrieve details for a specific portfolio including its allocations and current state." }, { "info": { "name": "Upvest Update a portfolio", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.upvest.co/portfolios/:portfolio_id", "params": [ { "name": "portfolio_id", "value": "", "type": "path", "description": "The unique identifier of the portfolio." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update portfolio settings or metadata." } ] } ], "bundled": true }