Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AccountGroupKey AccountGroupKey Query-String The key of the account group to which the positions belong.
    AccountKey AccountKey Query-String The key of the account to which the positions belong.
    ClientKey ClientKey Query-String The key of the client to which the positions belong.
  • Response Parameters

    View Response Codes
    Name Type Description
    Amount Decimal Total exposure in the given currency.
    AmountInCalculationEntityCurrency Decimal Total exposure in the currency of the calculation entity.
    Currency String The exposure currency.
  • Request Example

    Request URL
    GET port/v1/exposure/fxspot/?ClientKey=493b43a5-fe85-4d1f-9071-dd4a9d4e42a4&AccountGroupKey=stringValue&AccountKey=01b64edf-da03-4145-bf33-ae21527d4c86
  • Response Example

    Response body
    {
      "Data": [
        {
          "Amount": 10.0,
          "AmountInCalculationEntityCurrency": 10.0,
          "Currency": "stringValue"
        }
      ],
      "MaxRows": 99
    }