eToro · Schema

DeletePriceAlertResponse

Response for price alert delete operation

Social TradingCopy TradingInvestingMarket DataPortfolio-ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
success boolean Indicates the operation completed successfully
data object
View JSON Schema on GitHub

JSON Schema

DeletePriceAlertResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/DeletePriceAlertResponse.json",
  "title": "DeletePriceAlertResponse",
  "type": "object",
  "description": "Response for price alert delete operation",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Indicates the operation completed successfully",
      "example": true
    },
    "data": {
      "type": "object",
      "properties": {
        "alertId": {
          "type": "string",
          "format": "uuid",
          "description": "Unique identifier of the deleted price alert",
          "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
        }
      }
    }
  }
}