Skip to main content

Retrieve Customer Velocity Limit Configuration


Overview

You can retrieve Customer Velocity Limit Configuration using the GET method, as described below. Velocity limits define the maximum number and cumulative amount of transactions a customer can perform. They can be configured separately for credit and debit transactions, enabling precise risk management and transaction control.


Resource Access

Production (api.ahrvo.network)

GET https://api.ahrvo.network/banking/us2/v1/customer/id/{id}/configuration/velocityControl

Staging (gateway.ahrvo.network)

GET https://gateway.ahrvo.network/banking/us2/v1/customer/id/{id}/configuration/velocityControl

Authentication

HeaderDescription
AuthorizationBearer {JWT token}
x-api-keyYour API key
Content-Typeapplication/json

Path Parameters

ParameterTypeDescription
idintegerInternal customer ID

Response Fields

Transaction Limit — Credit

FieldTypeDescription
transactionLimit.credit.totalCountstringMaximum number of credit transactions allowed
transactionLimit.credit.totalAmountstringMaximum cumulative credit transaction amount
transactionLimit.credit.methodControl.ach.totalCountstringMaximum ACH credit transactions
transactionLimit.credit.methodControl.ach.totalAmountstringMaximum cumulative ACH credit amount
transactionLimit.credit.methodControl.card.totalCountstringMaximum card credit transactions
transactionLimit.credit.methodControl.card.totalAmountstringMaximum cumulative card credit amount
transactionLimit.credit.methodControl.check.totalCountstringMaximum check credit transactions
transactionLimit.credit.methodControl.check.totalAmountstringMaximum cumulative check credit amount
transactionLimit.credit.lastUpdatedOnstringTimestamp of last update

Transaction Limit — Debit

FieldTypeDescription
transactionLimit.debit.totalCountstringMaximum number of debit transactions allowed
transactionLimit.debit.totalAmountstringMaximum cumulative debit transaction amount
transactionLimit.debit.methodControl.ach.totalCountstringMaximum ACH debit transactions
transactionLimit.debit.methodControl.ach.totalAmountstringMaximum cumulative ACH debit amount
transactionLimit.debit.methodControl.card.totalCountstringMaximum card debit transactions
transactionLimit.debit.methodControl.card.totalAmountstringMaximum cumulative card debit amount
transactionLimit.debit.methodControl.check.totalCountstringMaximum check debit transactions
transactionLimit.debit.methodControl.check.totalAmountstringMaximum cumulative check debit amount
transactionLimit.debit.methodControl.wire.totalCountstringMaximum wire debit transactions
transactionLimit.debit.methodControl.wire.totalAmountstringMaximum cumulative wire debit amount
transactionLimit.debit.methodControl.internationalWire.totalCountstringMaximum international wire debit transactions
transactionLimit.debit.methodControl.internationalWire.totalAmountstringMaximum cumulative international wire debit amount
transactionLimit.debit.methodControl.virtualCard.totalCountstringMaximum virtual card debit transactions
transactionLimit.debit.methodControl.virtualCard.totalAmountstringMaximum cumulative virtual card debit amount
transactionLimit.debit.lastUpdatedOnstringTimestamp of last update

Example Request

GET /banking/us2/v1/customer/id/4260651/configuration/velocityControl HTTP/1.1
Host: api.ahrvo.network
Authorization: Bearer {placeholder("JWT token")}
x-api-key: {placeholder("your-api-key")}
Content-Type: application/json

Example Response

{
"transactionLimit": {
"credit": {
"totalCount": "99999999",
"totalAmount": "9999999.00",
"methodControl": {
"ach": {
"totalCount": "999",
"totalAmount": "999.00"
},
"card": {
"totalCount": "99999999",
"totalAmount": "9999999.00"
},
"check": {
"totalCount": "99999999",
"totalAmount": "9999999.00"
}
},
"lastUpdatedOn": "08/29/2025 07:44:06"
},
"debit": {
"totalCount": "9999999",
"totalAmount": "9999999.00",
"methodControl": {
"ach": {
"totalCount": "99999",
"totalAmount": "9999999.00"
},
"card": {
"totalCount": "99999",
"totalAmount": "9999999.00"
},
"check": {
"totalCount": "99999",
"totalAmount": "9999999.00"
},
"wire": {
"totalCount": "99999",
"totalAmount": "9999999.00"
},
"internationalWire": {
"totalCount": "99999",
"totalAmount": "9999999.00"
},
"virtualCard": {
"totalCount": "99999",
"totalAmount": "9999999.00"
}
},
"lastUpdatedOn": "08/29/2025 07:44:06"
}
}
}

Response Status

HTTP Status: 200 OK

Supported Methods by Transaction Type

MethodCreditDebit
ACH
Card
Check
Wire
International Wire
Virtual Card

Important Notes

Velocity Limits

Velocity limits are customer-level controls that restrict the total number and cumulative dollar amount of transactions. They help prevent fraud and enforce compliance requirements.

Related Endpoints

Use the Update Customer Velocity Limit Configuration endpoint to modify these limits.


Interactive API Explorer