Upvest · Schema

ReferenceAccount

A linked reference bank account for transfers.

Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

Properties

Name Type Description
id string The reference account identifier.
iban string The IBAN of the reference bank account.
bic string The BIC/SWIFT code.
account_holder string The name of the account holder.
status string The reference account status.
View JSON Schema on GitHub

JSON Schema

investment-api-reference-account-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-reference-account-schema.json",
  "title": "ReferenceAccount",
  "description": "A linked reference bank account for transfers.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The reference account identifier.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "iban": {
      "type": "string",
      "description": "The IBAN of the reference bank account.",
      "example": "example-value"
    },
    "bic": {
      "type": "string",
      "description": "The BIC/SWIFT code.",
      "example": "example-value"
    },
    "account_holder": {
      "type": "string",
      "description": "The name of the account holder.",
      "example": "example-value"
    },
    "status": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ],
      "description": "The reference account status.",
      "example": "ACTIVE"
    }
  }
}