RocketKOR

Financial Account Limits Object

The Financial Account Limits object represents the daily, weekly, and monthly transaction limits for a Financial Account. The object also includes the actual transaction amounts used for each limit, based on the timestamp used in the request.

Attributes

financialAccountId  

string (UUID)

ID of the Financial Account.

periods

array

List of transaction limits and amounts used by time period (daily, weekly, and monthly).

type

string enum, values: daily, weekly, monthly

Type of transaction limit.

from

string (date-time)

Inclusive start date for the reporting period (based on the request timestamp).

to

string (date-time)

Exclusive end date for the reporting period (based on the request timestamp).

amount

object

Transaction limit amount by currency.

{currency}

object

Transaction limit for a specific currency. The {currency} object name will be the currency code, such as USD or CAD.

limit

string (number)

Transaction limit for the time period.

used

string (number)

Actual transaction amount used for the time period.

Financial Account Limits Object

				
					{
  "financialAccountId": "93900da4-b882-4299-95e5-8e11a95b1a6e",
  "periods": [
    {
      "type": "daily",
      "from": "2022-06-22T00:00:00+00:00",
      "to": "2022-06-23T00:00:00+00:00",
      "amount": {
        "USD": {
          "limit": "10000.00",
          "used": "150.00"
        },
        "CAD": {
          "limit": "15000.00",
          "used": "350.00"
        }
      }
    },
    {
      "type": "weekly",
      "from": "2022-06-19",
      "to": "2022-06-25",
      "amount": {
        "USD": {
          "limit": "50000.00",
          "used": "2150.00"
        },
        "CAD": {
          "limit": "65000.00",
          "used": "550.00"
        }
      }
    },
    {
      "type": "monthly",
      "from": "2022-06-01T00:00:00+00:00",
      "to": "2022-07-01T00:00:00+00:00",
      "amount": {
        "USD": {
          "limit": "200000.00",
          "used": "20150.00"
        },
        "CAD": {
          "limit": "265000.00",
          "used": "17550.00"
        }
      }
    }
  ]
}