LogoLogo
ChangelogFAQsStatus
  • Introduction
  • Getting Started
    • Your Zum Rails Account
    • Developer Quickstart
  • Payments
    • Introduction
    • Payment Rails
    • Bank Payments
      • EFT
      • ACH
      • RTP/FedNow
    • 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
  • Input Parameters
  • Response Parameters

Was this helpful?

  1. API Reference
  2. Operations

Daily Auto-Withdrawal Summary

Use this endpoint to list transactions in a daily auto-withdrawal. This API call works from the second daily withdrawal onward.

This endpoint does not work for daily withdrawals that are grouped by batch.

Method: POST

Endpoint: {{env}}/api/wallet/transactions/summary

Input Parameters

Parameter
Type
Mandatory
Description

WalletId

guid

yes

Wallet ID

AutomaticDailyWithdrawWalletTransactionId

guid

yes

Transaction ID for wallet withdrawal

WalletTransactionReportType

number

yes

For a summary report of the daily auto-withdrawal, use the value "1"

Response Parameters

Parameter
Type
Description

CreatedAt

datetime

When the transaction was created

Description

string

Transaction description

Debit

decimal

Debit amount

Credit

decimal

Credit amount

Balance

decimal

Wallet balance after the transaction

TransactionId

guid

Transaction ID

IsAutomaticDailyWithdraw

boolean

If transaction is automatic withdrawal

{
    "WalletId": "1e0b6ee0-48e9-41c6-bcd9-fe384168894b",
    "AutomaticDailyWithdrawWalletTransactionId" : "276d54c5-0b3b-459f-a6a2-4663e220d36c",
    "WalletTransactionReportType": 1
}
{
    "statusCode": 200,
    "message": "POST Request successful.",
    "isError": false,
    "result": [
        {
            "CreatedAt": "2025-04-21T23:12:04.730977Z",
            "Description": "Funds received by Funding Source (Bank of Montreal-12345-12312314562)",
            "Debit": 0,
            "Credit": 100,
            "Balance": 200.0,
            "TransactionId": "f4e619c6-145b-4600-b621-acfd5767963e",
            "IsAutomaticDailyWithdraw": false
        },
        {
            "CreatedAt": "2025-04-21T23:12:04.486997Z",
            "Description": "Funds received by Funding Source (Bank of Montreal-12345-12312314562)",
            "Debit": 0,
            "Credit": 100,
            "Balance": 100.0,
            "TransactionId": "c8657c17-cf97-4aff-868d-b56b7358ab0f",
            "IsAutomaticDailyWithdraw": false
        }
    ]
}
PreviousReview TransactionsNextWebhooks

Last updated 12 days ago

Was this helpful?