Update Multiple Transaction Limits

Update multiple transaction limits for Customer Accounts, Customer Financial Accounts, or Business Financial Accounts. You can update limits belonging to different accounts in the same request.

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

PUT /v1/limits

Authorization Header

Authorization: Bearer <access_token>

Request Body

Map of transaction limit IDs and amounts. For each limit you want to change, add an object for the transaction limit ID. The object must contain the limit amount as a key/value pair where the value is a string.

"TRANSACTION_LIMIT_ID": {

    "amount": "STRING"

  }

For example:

"59bfd406-cad1-49a1-819a-3405911bd427": {

    "amount": "99.99"

  }

Returns

Returns an array of Transaction Limits objects for the limits that have been updated.

SAMPLE REQUEST

				
					{
  "59bfd406-cad1-49a1-819a-3405911bd427": {
    "amount": "99.99"
  },
  "b3a3fd0d-9016-448a-a83c-38d0c4690f50": {
    "amount": "1200.00"
  },
  "93900da4-b882-4299-95e5-8e11a95b1a6e": {
    "amount": "200.50"
  }
}
				
			

SAMPLE RESPONSE

				
					[
  {
    "id": "59bfd406-cad1-49a1-819a-3405911bd427",
    "limitType": "SINGLE",
    "scopeId": "8ee6e06a-bac7-4793-80fd-8fd07bbabef8",
    "scopeType": "FA_KFA",
    "currency": "USD",
    "amount": 99.99
  },
  {
    "id": "b3a3fd0d-9016-448a-a83c-38d0c4690f50",
    "limitType": "WEEKLY",
    "scopeId": "3947522f-a12a-451b-840a-d755ccaa2493",
    "scopeType": "FA_KFA",
    "currency": "USD",
    "amount": 1200.00
  },
  {
    "id": "93900da4-b882-4299-95e5-8e11a95b1a6e",
    "limitType": "DAILY",
    "scopeId": "63afbc76-bf57-41f7-baf4-cd3512dc44fd",
    "scopeType": "FA_KFA",
    "currency": "USD",
    "amount": 200.50
  }
]
				
			
Exit mobile version