eToro · Schema

UpdatePriceAlertRequest

Request body for updating an existing price alert

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
targetPrice number New target price for the alert. Must be greater than 0.
View JSON Schema on GitHub

JSON Schema

UpdatePriceAlertRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/UpdatePriceAlertRequest.json",
  "title": "UpdatePriceAlertRequest",
  "type": "object",
  "description": "Request body for updating an existing price alert",
  "required": [
    "targetPrice"
  ],
  "properties": {
    "targetPrice": {
      "type": "number",
      "format": "decimal",
      "description": "New target price for the alert. Must be greater than 0.",
      "exclusiveMinimum": true,
      "example": 190.0,
      "minimum": 0
    }
  }
}