OANDA · Schema

AccountProperties

Properties related to an Account.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
id string The Account's identifier
mt4AccountID integer The Account's associated MT4 Account ID. This field will not be present if the Account is not an MT4 account.
tags array The Account's tags
View JSON Schema on GitHub

JSON Schema

AccountProperties.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AccountProperties",
  "description": "Properties related to an Account.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Account's identifier",
      "format": "\"-\"-delimited string with format \"{siteID}-{divisionID}-{userID}-{accountNumber}\""
    },
    "mt4AccountID": {
      "type": "integer",
      "description": "The Account's associated MT4 Account ID. This field will not be present if the Account is not an MT4 account."
    },
    "tags": {
      "type": "array",
      "description": "The Account's tags",
      "items": {
        "type": "string"
      }
    }
  }
}