eToro · Schema

DiscussionCreateRequest

Request body for creating a new discussion post

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
message string Post text content (max 1000 chars)
attachments object
View JSON Schema on GitHub

JSON Schema

DiscussionCreateRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/DiscussionCreateRequest.json",
  "title": "DiscussionCreateRequest",
  "type": "object",
  "description": "Request body for creating a new discussion post",
  "properties": {
    "message": {
      "type": "string",
      "description": "Post text content (max 1000 chars)",
      "example": "Just opened a long position on $TSLA \u2014 strong earnings ahead!"
    },
    "attachments": {
      "$ref": "#/components/schemas/Attachments"
    }
  }
}