eToro · Schema

CreateCashAccountRequest

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
requestReferenceId string Client-generated idempotency key
tncDocId integer Terms and conditions document ID accepted by the user
View JSON Schema on GitHub

JSON Schema

CreateCashAccountRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CreateCashAccountRequest.json",
  "title": "CreateCashAccountRequest",
  "type": "object",
  "required": [
    "requestReferenceId",
    "tncDocId"
  ],
  "properties": {
    "requestReferenceId": {
      "type": "string",
      "format": "uuid",
      "description": "Client-generated idempotency key"
    },
    "tncDocId": {
      "type": "integer",
      "format": "int64",
      "description": "Terms and conditions document ID accepted by the user"
    }
  }
}