{ "opencollection": "1.0.0", "info": { "name": "Upvest Investment Account Transfers Users API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "Upvest List users", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/users", "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 onboarded users. Supports filtering and pagination parameters." }, { "info": { "name": "Upvest Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.upvest.co/users", "body": { "type": "json", "data": "{}" } }, "docs": "Onboard a new user to the investment platform. The user must pass identity verification and compliance checks before trading is enabled." }, { "info": { "name": "Upvest Retrieve a user", "type": "http" }, "http": { "method": "GET", "url": "https://api.upvest.co/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The unique identifier of the user." } ] }, "docs": "Retrieve details for a specific user by their unique identifier." }, { "info": { "name": "Upvest Update a user", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.upvest.co/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The unique identifier of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update profile information for an existing user." } ] } ], "bundled": true }