Upvest · Schema

AccountTransferCreate

Request body for creating an account transfer.

Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

Properties

Name Type Description
source_account_id string The source account.
target_account_id string The target account.
View JSON Schema on GitHub

JSON Schema

investment-api-account-transfer-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-account-transfer-create-schema.json",
  "title": "AccountTransferCreate",
  "description": "Request body for creating an account transfer.",
  "type": "object",
  "properties": {
    "source_account_id": {
      "type": "string",
      "format": "uuid",
      "description": "The source account.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "target_account_id": {
      "type": "string",
      "format": "uuid",
      "description": "The target account.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    }
  }
}