List All Transaction Limits for an Account

Retrieve all transaction limits for a Customer Account, Customer Financial Account, or Business Financial Account.

Transaction limits define the maximum debit transaction amounts for an account, and include single, daily, weekly, and monthly limits.

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

Endpoint

GET /v1/limits

Authorization Header

Authorization: Bearer <access_token>

Query Parameters

scopeId  REQUIRED

string (UUID)

ID of the Customer Account or Financial Account.

scopeType  REQUIRED

string enum, values: CUSTOMER, FA_KFA

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

  • CUSTOMER  Customer Account.
  • FA_KFA  Financial Account.

Request Body

None

Returns

Returns an array of Transaction Limits objects. This object contains the single, daily, weekly, and monthly transaction limits for the account.

SAMPLE RESPONSE

				
					[
  {
    "id": "861446e4-437e-4f10-9b5c-fda856d125c5",
    "limitType": "SINGLE",
    "scopeId": "d6e3efb0-dcd3-4211-b1aa-6353a92fbc8a",
    "scopeType": "FA_KFA",
    "currency": "USD",
    "amount": 250.00
  },
  {...},
  {...}
]
				
			
Exit mobile version