LogoLogo
  • Introduction
  • Getting Started
    • Your Zum Rails Account
    • Developer Quickstart
  • Payments
    • Introduction
    • Payment Rails
    • Bank Payments
      • EFT
      • ACH
    • Interac e-Transfer
      • Send & Request
      • Review Transactions
    • Card Payments
      • Visa Direct
      • Credit Card
      • Push-to-debit
  • User Tokenization
    • Zūm Connect
  • Invoices & Subscriptions
    • Overview
    • Products
    • Invoices
    • Subscriptions
  • Data Aggregation
    • Overview
    • Use Cases
    • Supported Institutions
    • Data
    • How it works
    • Testing
  • Insights
    • Overview
    • Income
    • Expenses
    • Insights
  • Brand Customization
    • Brand Customization
  • API Reference
    • Overview
    • Authentication
    • Users
    • Transactions
    • Funding Source
    • Products
    • Product Prices
    • Invoices
    • Subscriptions
    • Aggregation
    • Insights
    • Wallets
    • Operations
      • Transaction Limits
      • Review Transactions
      • Daily Auto-Withdrawal Summary
    • Webhooks
    • Errors
    • Idempotency
    • Country & Region Codes
  • Archived Documentation
Powered by GitBook
On this page
  1. API Reference
  2. Operations

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.

PreviousOperationsNextReview Transactions

Last updated 7 days ago