Innovative Bank Account Payments
Send and Request Real-Time Transfers
Instant Push-To-Card Payments
Real-Time EFT Payment Technology
US Bank Account Payment Technology
Faster, Data-Driven EFT Payments
No Code Payments & Collections System
Automate Accounting Operations with a 360 view
Control Flow Of Funds With Multiple Ledgers
Digital PAD For Today’s Consumer
Borrowers today demand fast, flexible and secure
payments.
VoPay’s unified payment technology eliminates the
friction of loan collections and reconciliations, enabling lenders to access real-time payment capabilities and automated collections.
By digitizing the entire loan process with data-driven technology, the risk of failed and NSF payments are eliminated, resulting in improved cash flow and reduced back-office administration for lenders.
Creating a faster funding and collections experience is critical for borrower retention. Accelerate the funding process by offering a real-time payout experience. Automate loan repayment with one-time or recurring payments as desired.
Example: With EFT credits, money is deposited into a bank account, commonly used to pay vendors and suppliers for products and services, issuing loans payouts or employee payroll.
Example: EFT debits or pull can be used to pay bills and invoices online using a bank account. Commonly used for subscriptions or recurring billing, loan repayments etc.
Streamline the process of pulling or pushing bulk EFT payments. Example: A SaaS platform that charges customers a monthly fee for access to various services through their platform.
VoPay user-friendly client dashboard is mission control for transaction management and reporting.
Real-time visibility of merchant payments
Manage merchant
sub-accounts
Bulk file upload for EFT and e-Transfer
Bulk file upload for EFT and
e-Transfer
Enable safe, efficient and frictionless real-time bank account payments with complete transaction visibility using a single API connection.
Our API-driven technology embeds payment processing services into any LMS or ERP software, simplifying the complexity of local payment methods.
Eliminate failed payments and slow processing with next-generation payment tools including data intelligence and bank account verification.
Manage the full cycle of money movement from payment to reconciliation in a fully integrated, automated and transparent way.
view api docs get api key 1curl --request POST \
2--url https://earthnode-dev.vopay.com/api/v2/interac/bulk-payout \
3--header 'accept: application/json' \
4--header 'content-type: application/x-www-form-urlencoded' \
5--data 'AccountID={AccountID}' \
6--data 'Key={APIKey}' \
7--data 'Signature={Signature}' \
8--data Amount=1000 \
9--data Currency=CAD \
10--data EmailAddress=ada.[email protected].com \
11--data 'RecipientName=Ada Lovelace' \
12--data 'Question=What is 2+2' \
13--data Answer=4
1sdk.InteracBulkPayoutPost({
2AccountID: '{AccountID}',
3Key: '{APIKey}',
4Signature: '{Signature}',
5Amount: 1000,
6Currency: 'CAD',
7EmailAddress: '[email protected]',
8RecipientName: 'Ada Lovelace',
9Question: 'What is 2+2',
10Answer: '4'
11}, {accept: 'application/json'})
12.then(res => console.log(res))
13.catch(err => console.error(err));
1$response = $client->request('POST', 'https://earthnode-dev.vopay.com/api/v2/interac
2/bulk-payout', [
3'form_params' => [
4'AccountID' => '{AccountID}',
5'Key' => '{APIKey}',
6'Signature' => '{Signature}',
7'Amount' => 1000,
8'Currency' => 'CAD',
9'EmailAddress' => '[email protected]',
10'RecipientName' => 'Ada Lovelace',
11'Question' => 'What is 2+2',
12'Answer' => '4'
13],
14'headers' => [
15'accept' => 'application/json',
16'content-type' => 'application/x-www-form-urlencoded',
17],
18]);
1url = "https://earthnode-dev.vopay.com/api/v2/interac/bulk-payout"
2payload ="AccountID=%7BAccountID%7D&Key=%7BAPIKey%7D&Signature=%7BSignature%7D&Amount=1000&Currency=CAD&EmailAddress=ada.lovelace%40gmail.com&RecipientName=Ada%20Lovelace&Question=What%20is%202%2B2&Answer=4"
"AccountID=%7BAccountID%7D&Key=%7BAPIKey%7D&Signature=%7BSignature
3%7D&Amount=1000&Currency=CAD&EmailAddress=ada.lovelace%40gmail.com&
4RecipientName=Ada%20Lovelace&Question=What%20is%202%2B2&Answer=4"
5headers = {
6"accept": "application/json",
7"content-type": "application/x-www-form-urlencoded"
8}
9response = requests.post(url, data=payload, headers=headers)
10print(response.text)
1curl --request POST \
2--url https://earthnode-dev.vopay.com/api/v2/interac/bulk-payout \
3--header 'accept: application/json' \
4--header 'content-type: application/x-www-form-urlencoded' \
5--data 'AccountID={AccountID}' \
6--data 'Key={APIKey}' \
7--data 'Signature={Signature}' \
8--data Amount=1000 \
9--data Currency=CAD \
10--data EmailAddress=ada.[email protected].com \
11--data 'RecipientName=Ada Lovelace' \
12--data 'Question=What is 2+2' \
13--data Answer=4
1sdk.InteracBulkPayoutPost({
2AccountID: '{AccountID}',
3Key: '{APIKey}',
4Signature: '{Signature}',
5Amount: 1000,
6Currency: 'CAD',
7EmailAddress: '[email protected]',
8RecipientName: 'Ada Lovelace',
9Question: 'What is 2+2',
10Answer: '4'
11}, {accept: 'application/json'})
12.then(res => console.log(res))
13.catch(err => console.error(err));
1$response = $client->request('POST', 'https://earthnode-dev.vopay.com/api/v2/interac
2/bulk-payout', [
3'form_params' => [
4'AccountID' => '{AccountID}',
5'Key' => '{APIKey}',
6'Signature' => '{Signature}',
7'Amount' => 1000,
8'Currency' => 'CAD',
9'EmailAddress' => '[email protected]',
10'RecipientName' => 'Ada Lovelace',
11'Question' => 'What is 2+2',
12'Answer' => '4'
13],
14'headers' => [
15'accept' => 'application/json',
16'content-type' => 'application/x-www-form-urlencoded',
17],
18]);
1url = "https://earthnode-dev.vopay.com/api/v2/interac/bulk-payout"
2payload ="AccountID=%7BAccountID%7D&Key=%7BAPIKey%7D&Signature=%7BSignature%7D&Amount=1000&Currency=CAD&EmailAddress=ada.lovelace%40gmail.com&RecipientName=Ada%20Lovelace&Question=What%20is%202%2B2&Answer=4"
"AccountID=%7BAccountID%7D&Key=%7BAPIKey%7D&Signature=%7BSignature
3%7D&Amount=1000&Currency=CAD&EmailAddress=ada.lovelace%40gmail.com&
4RecipientName=Ada%20Lovelace&Question=What%20is%202%2B2&Answer=4"
5headers = {
6"accept": "application/json",
7"content-type": "application/x-www-form-urlencoded"
8}
9response = requests.post(url, data=payload, headers=headers)
10print(response.text)
Your success is our success. Our expert support and development team will help you design your integrated payments experience with dedicated support to keep things running smoothly.
Onboard your customers’ faster using VoPay’s integrated technology. We handle all the security, KYC and data tokenization so you dont have to.
Your success is our success. Our expert support and development team will help you design your integrated payments experience with dedicated support to keep things running smoothly.
Onboard your customers’ faster using VoPay’s integrated technology. We handle all the security, KYC and data tokenization so you dont have to.
Remember when we said, “every business would become a software business?” Well, here we are, (...)
The digital payment transition is happening everywhere. We have seen consumers replace cash with credit cards (...)
VoPay’s Intelligent EFT / ACH (iQ11) adds a layer of data intelligence to EFT payments to make them faster, (...)
Get access to our developer friendly API and get a feel for how our payment solutions work.
We are happy to answer your questions. Fill out the form and we will have one of our team members contact you.