Upvest · JSON Structure

Investment Api Account Create Structure

Request body for creating an investment account.

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

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

Properties

user_id account_group_id type

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-account-create-structure.json",
  "name": "AccountCreate",
  "description": "Request body for creating an investment account.",
  "type": "object",
  "properties": {
    "user_id": {
      "type": "uuid",
      "description": "The user to create the account for.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "account_group_id": {
      "type": "uuid",
      "description": "The account group to assign the account to.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "type": {
      "type": "string",
      "description": "The type of investment account.",
      "example": "standard"
    }
  },
  "required": [
    "user_id",
    "account_group_id"
  ]
}