eToro · Schema

GetOrderInfoStatus

Status information for the order.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
id integer Status identifier. Common values: 1 = Executed, 2 = Cancelled, 3 = Rejected.
name string Human-readable status name.
errorCode integer Error code if the order failed. Zero indicates no error.
errorMessage string Human-readable error message if the order failed.
View JSON Schema on GitHub

JSON Schema

GetOrderInfoStatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/GetOrderInfoStatus.json",
  "title": "GetOrderInfoStatus",
  "type": "object",
  "description": "Status information for the order.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int32",
      "description": "Status identifier. Common values: 1 = Executed, 2 = Cancelled, 3 = Rejected."
    },
    "name": {
      "type": "string",
      "description": "Human-readable status name."
    },
    "errorCode": {
      "type": "integer",
      "format": "int32",
      "description": "Error code if the order failed. Zero indicates no error."
    },
    "errorMessage": {
      "type": "string",
      "nullable": true,
      "description": "Human-readable error message if the order failed."
    }
  }
}