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
  • Initial Setup
  • Ways to Integrate
  • API Integration
  • Portal
  • Hybrid (Recommended)
  • Next Steps
  • Zum Wallet
  • Create a User
  • Create a Transaction
  • Add a Funding Source
  1. Getting Started

Developer Quickstart

PreviousYour Zum Rails AccountNextIntroduction

Last updated 2 days ago

To begin processing payments with Zūm Rails, you need to follow a few preliminary steps. This guide will walk you through the necessary procedures to ensure a smooth onboarding experience.

Initial Setup

1

Create a Sandbox Account

Visit the Zūm Rails website and sign up for a sandbox account. This will be your primary testing environment where you can simulate payment processes without actual transactions.

2

Access the Zūm Rails Portal

After creating your sandbox account, log into the Zūm Rails Portal. This intuitive interface allows you to manage your users, monitor transactions, and oversee your payment operations.

3

Obtain API Username and Password

Once you have access to the portal, obtain your API username and password. These credentials are vital for accessing Zūm Rails services securely.

4

Add a Funding Source

Within the Portal, set up a funding source. This is necessary to facilitate transactions to and from your wallet, and ensure smooth payment processing.

Ways to Integrate

There are various ways to integrate with Zūm Rails. Check the options below to decide what fits your workflow:

API Integration

Explore our API to efficiently manage transactions, users, invoices, and more. By integrating our API, you gain full control over the user interface, allowing you to tailor it to meet your specific business needs.

Integrating APIs using Bearer Token Authorization is one of the most secure methods. Once generated, a Bearer Token is valid for up to an hour, enabling secure, repeated API calls without requiring repeated authorization.

Portal

Utilize the portal to create transactions, add users, and generate invoices. Explore our and to learn more about starting to move money via the portal. By choosing the portal, you can bypass API integration.

Hybrid (Recommended)

The hybrid model provides a robust and secure way to utilize APIs for transaction monitoring, money tracking, report downloading, and more. Through the Zūm portal, you can integrate the API/SDK or embed our URL in your application to manage users, initiate transactions, and send payment links. Moreover, you'll receive real-time updates on user and transaction statuses, allowing you to automate follow-up actions based on payment status.

Next Steps

Zum Wallet

  • This is a virtual account you can use to manage funds. If you need to move funds directly from a Funding Source to a User, or the opposite, the funds will pass through Zūm Wallet automatically.

  • You can also set up auto top-up to maintain a minimum balance in your wallet by configuring settings on the Wallet page on the Portal.

{
  "statusCode": 200,
  "message": "GET Request successful.",
  "isError": false,
  "result": [
    {
      "Id": "30126b59-...-008376504210",
      "Type": "Unified",
      "Balance": 1000.5
    }
  ]
}

Create a User

  • At Zūm, Users represent the payee for accounts payable, or the payer for accounts receivable.

  • Use the Zūm Rails API to create a user profile. This will allow you to manage user-specific data (such as a bank account or card information) and process transactions.

Create a Transaction

  • Set up transactions using the API. This will enable you to test payment processes and manage transaction records effectively.

{
  "ZumRailsType": "AccountsReceivable",
  "TransactionMethod": "Eft",
  "Amount": 123.45,
  "Memo": "Invoice 1234",
  "Comment": "Thank you for your business",
  "UserId": "USER_ID",
  "WalletId": "WALLET_ID"
}

Add a Funding Source

  • This is your business bank account, to be able to start moving funds you will need to link your bank account information using Zūm Portal.

  • You can add a funding source through the Portal by going to the Funding Sources > Add New Bank Account option.

To find the Wallet ID, go to the Wallet page on the Portal or use the below.

To learn more about creating users, refer to the . You may skip user profile creation and create a transaction without creating a user first. See to learn more.

For details on creating transactions for various use cases, see the .

FAQ
Video Tutorials
wallet endpoint
users API
transactions API
API reference