eToro · Schema

TncInfo

Terms and conditions the client must show and the user must accept before withdrawal.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
tncDocId integer Identifier to send back on withdrawal creation.
url string Link the client displays to user (webview/browser).
View JSON Schema on GitHub

JSON Schema

TncInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/TncInfo.json",
  "title": "TncInfo",
  "type": "object",
  "description": "Terms and conditions the client must show and the user must accept before withdrawal.",
  "required": [
    "tncDocId",
    "url"
  ],
  "properties": {
    "tncDocId": {
      "type": "integer",
      "format": "int64",
      "description": "Identifier to send back on withdrawal creation.",
      "example": 12345
    },
    "url": {
      "type": "string",
      "description": "Link the client displays to user (webview/browser).",
      "example": "https://example.com/tnc/withdraw-crypto-from-trading"
    }
  }
}