eToro · Schema

CommentCreateRequest

Request body for creating a comment or reply

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
message string Comment text (max 500 chars)
attachments object
View JSON Schema on GitHub

JSON Schema

CommentCreateRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CommentCreateRequest.json",
  "title": "CommentCreateRequest",
  "type": "object",
  "description": "Request body for creating a comment or reply",
  "required": [
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "Comment text (max 500 chars)",
      "example": "Great analysis! I agree \u2014 the fundamentals are solid."
    },
    "attachments": {
      "$ref": "#/components/schemas/Attachments"
    }
  }
}