eToro · Schema

CommentUpdateRequest

Request body for updating a comment or reply. Owner is derived from the auth token — do not supply it.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
message string Updated text content
attachments object
View JSON Schema on GitHub

JSON Schema

CommentUpdateRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CommentUpdateRequest.json",
  "title": "CommentUpdateRequest",
  "type": "object",
  "description": "Request body for updating a comment or reply. Owner is derived from the auth token \u2014 do not supply it.",
  "properties": {
    "message": {
      "type": "string",
      "description": "Updated text content",
      "example": "Great point, I updated my view after reading more."
    },
    "attachments": {
      "$ref": "#/components/schemas/Attachments"
    }
  }
}