Note: Only business accounts have the ability to collect payments.
If you’re looking to collect funds via ACH from other accounts, this guide covers the flow for your use case. Some examples of this scenario include:
A subscription-based platform collecting payments from their users
A utility service charging their customers for a monthly usage fee
A supplier collecting payments from a business
Note that this use case is only available for businesses accounts. For the purposes of this guide, we’ll use an example where you will be building a hypothetical utility bill payment platform. The key players in this scenario are:
The utility company (the account collecting funds)
The customer (the account being charged)
For the purposes of this guide, we’ll assume that you’ve created a Moov account and obtained your API keys. For more detailed instructions, see our quick start guide. Refer to the collecting ACH payments guide for an overview of the steps below.
Start by creating a Moov account for the utility company. Request the collect-funds capability for the utility company’s account. You will need to submit specific data about the business and its representatives to Moov for verification before the capability is enabled. See our capabilities guide for a list of required information.
Every eligible Moov account automatically comes with a Moov wallet, so you won’t need any additional setup to collect payments with a wallet.
After you’ve added a bank account, the customer must initiate and complete the verification process before you can pull funds from their account. Alternatively, you can verify bank accounts with instant account verification (IAV) via MX or Plaid.
1
2
curl -X POST "https://api.moov.io/accounts/{accountID}/bank-accounts/{bankAccountID}/verify"\
-H "Authorization: Bearer {token}"\
Once you’ve set up the utility company and the customer’s accounts, you’re ready to collect a payment. First, you can get a list of the available payment methods from the transfer options endpoint.
When collecting a payment using ACH, you will always use a payment method of type ach-debit-collect for the transfer source. Transfer options will also provide available payment methods for disbursement of the collected funds (for example, the utility company’s Moov wallet).
Once you’ve selected the payment methods for the transaction, you can initiate a transfer between the two accounts, using the payment method IDs for the wallet and bank account you got earlier in the transfer options request.