Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AccountKey AccountKey Query-String
    ClientKey ClientKey Query-String
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data InterAccountTransferLite [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /atr/v1/cashmanagement/interaccounttransfers/paymentsinprocessing?AccountKey={AccountKey}&ClientKey={ClientKey}
  • Response Example

    Response body
    {
      "Data": [
        {
          "Amount": 10,
          "Currency": "stringValue",
          "FromAccountKey": "dIm75edbgnW6aBK3CIc-sw==",
          "FromClientKey": "zpSlGZ4F0cPIx59wR3HP1g==",
          "PaymentId": 99,
          "ToAccountAmount": 10,
          "ToAccountCurrency": "stringValue",
          "ToAccountKey": "dIm75edbgnW6aBK3CIc-sw==",
          "ToClientKey": "zpSlGZ4F0cPIx59wR3HP1g=="
        }
      ],
      "MaxRows": 99
    }