Endpoint Parameters

  • Request parameters

    There are no Request Parameters

  • Response Parameters

    View Response Codes
    Name Type Description
    Active Boolean Whether the user is active.
    ClientKey ClientKey Unique key identifying the client that owns the user.
    Culture String Selected culture for this user. Five letter language culture name. Fx. en-GB
    Language String Selected language for this user. The two letter ISO 639-1 language code. See Reference Data Languages endpoint for supported languages.
    LastLoginStatus LoginStatus Status of last login or login attempt
    LastLoginTime UtcDateTime Time of last login or login attempt
    LegalAssetTypes AssetType [] Asset Types that can be traded on all accounts by this user.
    MarketDataViaOpenApiTermsAccepted Boolean True if the user has accepted terms for market data via OpenApi access.
    Name String The name of the user.
    TimeZoneId Integer Selected Time Zone for this user. See Reference Data TimeZones endpoint for supported time zones.
    UserId String Unique ID of the user.
    UserKey UserKey The unique key for the user.
  • Request Example

    Request URL
    GET /port/v1/users/me
  • Response Example

    Response body
    {
      "Active": true,
      "ClientKey": "V-B8jOk9SM8QdqN1u2Bjtw==",
      "Culture": "en-GB",
      "Language": "en",
      "LastLoginStatus": "Successful",
      "LastLoginTime": "2024-04-21T02:31:05.4115Z",
      "LegalAssetTypes": [
        "FxSpot",
        "Stock",
        "ContractFutures"
      ],
      "MarketDataViaOpenApiTermsAccepted": false,
      "Name": "Mr. Anthony Test",
      "TimeZoneId": 28,
      "UserId": "654321",
      "UserKey": "V-B8jOk9SM8QdqN1u2Bjtw=="
    }