OANDA · Schema

UserInfoExternal

A representation of user information, as available to external (3rd party) clients.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
userID integer The user's OANDA-assigned user ID.
country string The country that the user is based in.
FIFO boolean Flag indicating if the the user's Accounts adhere to FIFO execution rules.
View JSON Schema on GitHub

JSON Schema

UserInfoExternal.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserInfoExternal",
  "description": "A representation of user information, as available to external (3rd party) clients.",
  "type": "object",
  "properties": {
    "userID": {
      "type": "integer",
      "description": "The user's OANDA-assigned user ID."
    },
    "country": {
      "type": "string",
      "description": "The country that the user is based in."
    },
    "FIFO": {
      "type": "boolean",
      "description": "Flag indicating if the the user's Accounts adhere to FIFO execution rules."
    }
  }
}