Transaction Limits Object

The Transaction Limits object represents the single, daily, weekly, and monthly transaction limits for a Customer Account, Customer Financial Account, or Business Financial Account.

Note  Transaction limits apply to internal and integrated bank Financial Accounts only.

Attributes

id

string (UUID)

ID of the transaction limit.

limitType

string enum, values: SINGLE, DAILY, WEEKLY, MONTHLY

Type of transaction limit. The following values are supported:

  • SINGLE  Maximum amount allowed for a single transaction.
  • DAILY  Maximum cumulative amount allowed for a single day (00:00 – 23:59:59:59 EST).
  • WEEKLY  Maximum cumulative amount allowed for a rolling 7-day period.
  • MONTHLY  Maximum cumulative amount allowed for a rolling 30-day period.

scopeId

string (UUID)

ID of the Customer Account or Financial Account to which the transaction limit belongs.

scopeType

string enum, values: CUSTOMER, FA_KFA

Type of entity referenced in scopeId. The following values are supported:

  • CUSTOMER  Customer Account.
  • FA_KFA  Financial Account.

currency

string, min length: 3, max length: 3

Currency used for the transaction limit. Must be an ISO 4217 alpha 3-character currency code.

amount

number, min value = 0

Amount of the transaction limit.

Transaction Limits Object

				
					{
  "id": "string(UUID)",
  "limitType": "SINGLE | DAILY | WEEKLY | MONTHLY",
  "scopeId": "string(UUID)",
  "scopeType": "CUSTOMER |  FA_KFA",
  "currency": "string",
  "amount": number
}
				
			
Exit mobile version