OANDA · Schema

ClientExtensions

A ClientExtensions object allows a client to attach a clientID, tag and comment to Orders and Trades in their Account. Do not set, modify, or delete this field if your account is associated with MT4.

ForexFX TradingCFD TradingFinancial-ServicesTrading APIs

Properties

Name Type Description
id string The Client ID of the Order/Trade
tag string A tag associated with the Order/Trade
comment string A comment associated with the Order/Trade
View JSON Schema on GitHub

JSON Schema

ClientExtensions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ClientExtensions",
  "description": "A ClientExtensions object allows a client to attach a clientID, tag and comment to Orders and Trades in their Account.  Do not set, modify, or delete this field if your account is associated with MT4.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Client ID of the Order/Trade"
    },
    "tag": {
      "type": "string",
      "description": "A tag associated with the Order/Trade"
    },
    "comment": {
      "type": "string",
      "description": "A comment associated with the Order/Trade"
    }
  }
}