Business Account Limits Object

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

Attributes

businessAccountId

string (UUID)

ID of the Business Account specified in the request.


OR

parentBusinessAccountId

string (UUID)

ID of the Parent Business Account for the Business Account specified in the request.

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), format: ISO 8601 (example: 2018-11-13T20:20:39+00:00)

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

to

string (date-time), format: ISO 8601 (example: 2018-11-13T20:20:39+00:00)

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.

Business Account Limits Object

				
					[
  {
    "businessAccountId": "string(UUID)",
    "periods": [
      {
        "type": "daily | weekly | monthly",
        "from": "string(date-time)",
        "to": "string(date-time)",
        "amount": {
          "{currency}": {
            "limit": "string(number)",
            "used": "string(number)"
          }
        }
      }
    ]
  },
  {
    "parentBusinessAccountId": "string(UUID)",
    "periods": [
      {
        "type": "daily | weekly | monthly",
        "from": "string(date-time)",
        "to": "string(date-time)",
        "amount": {
          "{currency}": {
            "limit": "string(number)",
            "used": "string(number)"
          }
        }
      }
    ]
  }
]
				
			
Exit mobile version