Transaction Limits

Fetch Transaction Limits

Use this endpoint if you want to view your transaction limits. Partners can view transaction limits for their customers using this endpoint.

Method: GET

Endpoint: {{env}}/api/customer/transactionlimits/{customerId}

{
    "statusCode": 200,
    "message": "GET Request successful.",
    "isError": false,
    "result": [
        {
            "TransactionMethod": "Eft",
            "Type": "FundZumWallet",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Eft",
            "Type": "WithdrawZumWallet",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Eft",
            "Type": "AccountsPayable",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Eft",
            "Type": "AccountsReceivable",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Interac",
            "Type": "AccountsPayable",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Interac",
            "Type": "AccountsReceivable",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Interac",
            "Type": "FundZumWallet",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        },
        {
            "TransactionMethod": "Interac",
            "Type": "WithdrawZumWallet",
            "DailyQuantity": 100,
            "DailyQuantityRemaining": 100,
            "DailyAmount": 9999.99,
            "DailyVolume": 1000000,
            "DailyVolumeRemaining": 1000000,
        }
    ]
}

Response

Parameter
Type
Description

TransactionMethod

string

Transaction method

Type

string

Transaction type

DailyQuantity

int

The transactions per day for each transaction type is the maximum number of transactions allowed per day for transactions of that type.

DailyQuantityRemaining

int

The transactions per day for each transaction type that are remaining out of the maximum number of transactions allowed per day for transactions of that type.

DailyAmount

decimal

The limit for each transaction type is the maximum amount allowed per transaction of that respective type.

DailyVolume

decimal

The maximum volume per day for each transaction type is the maximum cumulative amount allowed for all transactions of that respective type.

DailyVolumeRemaining

decimal

The volume remaining is the maximum cumulative amount allowed per day for all transactions of that respective transaction type minus the cumulative amount used in the current day.

Last updated

Was this helpful?