Upvest · JSON Structure

Investment Api Portfolio Order Create Structure

Request body for placing a portfolio order.

Type: object Properties: 2 Required: 2
Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

PortfolioOrderCreate is a JSON Structure definition published by Upvest, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cash_amount currency

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-structure/investment-api-portfolio-order-create-structure.json",
  "name": "PortfolioOrderCreate",
  "description": "Request body for placing a portfolio order.",
  "type": "object",
  "properties": {
    "cash_amount": {
      "type": "string",
      "description": "The total cash amount to invest, distributed across allocations.",
      "example": "example-value"
    },
    "currency": {
      "type": "string",
      "description": "The order currency as an ISO 4217 code.",
      "pattern": "^[A-Z]{3}$",
      "example": "EUR"
    }
  },
  "required": [
    "cash_amount",
    "currency"
  ]
}