eToro · Schema

BankAccountIdentifier

One bank identifier entry as key/value pair. `type` defines the identifier kind and `value` contains the identifier as a string.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
type string Identifier type key. Allowed examples include bankAccountNumber, ncc, iban, bic, sortCode, and bsbCode.
value string Identifier value as returned by the bank.
View JSON Schema on GitHub

JSON Schema

BankAccountIdentifier.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/BankAccountIdentifier.json",
  "title": "BankAccountIdentifier",
  "type": "object",
  "required": [
    "type",
    "value"
  ],
  "description": "One bank identifier entry as key/value pair. `type` defines the identifier kind and `value` contains the identifier as a string.",
  "properties": {
    "type": {
      "type": "string",
      "description": "Identifier type key. Allowed examples include bankAccountNumber, ncc, iban, bic, sortCode, and bsbCode.",
      "example": "iban"
    },
    "value": {
      "type": "string",
      "description": "Identifier value as returned by the bank.",
      "example": "GB08MRMI04133511549380"
    }
  }
}