eToro · Schema

CashAccountCreationStatusResponse

Social TradingCopy TradingInvestingMarket DataPortfolio-ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
requestReferenceId string
status string
updatedAt string
account object Present only when status is Success
View JSON Schema on GitHub

JSON Schema

CashAccountCreationStatusResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CashAccountCreationStatusResponse.json",
  "title": "CashAccountCreationStatusResponse",
  "type": "object",
  "required": [
    "requestReferenceId",
    "status"
  ],
  "properties": {
    "requestReferenceId": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Success",
        "Failure"
      ]
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "account": {
      "$ref": "#/components/schemas/CashAccount",
      "nullable": true,
      "description": "Present only when status is Success"
    }
  }
}