Update a Transaction Limit

Update a transaction limit 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

PUT /v1/limits/{limitId}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

limitId  REQUIRED

string (UUID)

ID of the transaction limit.

Request Body

amount

number, min value = 0

Amount of the transaction limit.

Returns

Returns the Transaction Limits object. This object contains the single, daily, weekly, and monthly transaction limits for a Customer Account or a Financial Account.

SAMPLE REQUEST

				
					{
  "amount": 250.00
}
				
			

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