Returns the transaction limits configured for the specified customer based on the provided payment context (such as payment rail, amount, delivery date, and if applicable ACH SEC code and entry type).
Use this endpoint BEFORE initiating a payment to understand the limits that will be enforced during processing. This helps avoid payment failures caused by exceeding configured limits.
The response includes limits such as per-transaction, per-day, per-week, and per-month, depending on the selected payment rail and inputs.
When only paymentRail is provided, the endpoint returns all limits configured for that rail
(per-transaction, per-day, per-week, and per-month).
secCode and entryType are applicable ONLY when paymentRail is ACH. These fields are ignored
for all other payment rails.
For ACH payments:
entryType determines whether Debit or Credit limits are applied.secCode is also provided, the response includes SEC code specific transaction limits
in addition to the standard ACH limits (per-transaction, per-day, and per-month).Successfully retrieved applicable transaction limits
No applicable limit data found for the given request.
Bad request — invalid or missing input fields.
You are not authorized to access the resource
Accessing the resource you were trying to reach is forbidden
The resource you were trying to reach is not found
Internal server error
{- "paymentAmount": 100.55,
- "deliveryDate": "06-30-2025",
- "paymentRail": "FEDNOW",
- "secCode": "CCD",
- "entryType": "CREDIT"
}{- "limits": [
- {
- "code": "INSTANT_PAYMENT_LIMIT_PER_MONTH",
- "currentLimit": 15000.55,
- "usedAmount": 5000.35,
- "remainingLimit": 10000.25,
- "displayName": "Instant Payment Monthly Limit",
- "message": "Monthly transaction with $10,000.00 limit has exceeded by $1,690,000.00 for lrx"
}
]
}