How to Use Visa Direct (2024)

Using the Funds Transfer API

The Funds Transfer API contains six operations that all have a similar structure: pull funds from a single Visa account, pull funds from multiple Visa accounts, push funds to a single Visa account, push funds to multiple Visa accounts, return funds to a single Visa account, and return funds to multiple Visa accounts. You can find the technical specifications for each operation on the API Reference tab.

A basic person-to-person funds transfer service using Visa Direct includes a “Pull” and “Push” operation using the Funds Transfer API.

How to Use Visa Direct (1)

The first step is to collect funds from the sender. As an Originator, you can obtain funds from the sender using any means available to you, such as by withdrawing funds from the sender’s bank account or by pulling funds from the sender’s Visa card. If the source of funds is a Visa card, you can use the Funds Transfer API to obtain them. The Funds Transfer API does this by submitting an Account Funding Transaction (AFT) into the Visa network.

Once you have obtained funds from the sender using the Funds Transfer API or through other means, the next step is to push those funds to the recipient’s Visa account. There are two operations on the Funds Transfer API that you can use to push them. The Funds Transfer API includes an operation for pushing funds to a single Visa account (PushFunds) and an operation for pushing funds to multiple Visaaccounts simultaneously (MultiPushFunds). These operations on the Funds Transfer API do this by submitting Original Credit Transactions (OCT) into the Visa network.

How to Use Visa Direct (2)

If the push payment is part of a Funds Disbursem*nt service, only the push part of the funds transfer transaction is needed. The money to fund the disbursem*nt is usually pulled from the sender’s bank account and settled outside of the Visa network.

Sometimes a push payment fails, usually because the push payment was declined by the receiving issuer. In that case, if the source of funds was a pull from a Visa card using the Funds Transfer API, then you must return the funds to the sender’s account the same way. If the sender’s funds were obtained from another source, you are responsible for returning them to the sender using other means.

The request payloads of the six operations differ somewhat due to the different functionality they deliver, but all of them generally require this type of information in the POST request:

  • An Acquiring BIN and its Country Code.
    This is the Bank Identification Number (BIN) that is used to clear and settle the transaction within Visa and the country in which it is licensed for use. If you are a financial institution (or have a Visa acquirer POS license), you can decide which of your licensed BINs you will use for funds transfer activity. This should be a unique BIN that is not shared with any other Visa service. If you are a sponsored third-party Originator, your sponsoring financial institution will assign an Acquiring BIN to you when you establish your acquiring relationship with them. You can obtain a test Acquiring BIN on your Project Dashboard for use in sandbox testing, but you will need to register your actual Acquiring BIN(s) with Visa during production onboarding.
  • Business Application Identifier (BAI)
    This is a two-character code that identifies the intended use of a push payment. It determines the data carried in the message, the limits and economics that may apply to the transaction, and may be used by the sending and/or receiving issuer to make an authorization decision. You can find permissible values in theRequest and Response Codes Reference.
  • Information about an Individual Sender or Sending Entity
    These fields (referred to as the Merchant and Card Acceptor fields in the technical specification) identify the sender and sender transaction narrative as it will appear on the cardholder’s statement. The sender- related information would typically be collected from the sending customer and included in the appropriate fields in the request.


You can find the technical specifications of each operation on theAPI Referencelink. All of these operations generally return these same fields in the response:

  • Visa Transaction Identifier
    This is a unique reference number for this transaction that is assigned by Visa. To tie a PushFunds operation together with a previous PullFunds operation, you must populate the Transaction Identifier from the PullFunds response into the subsequent PushFunds request.
  • Action Code
    A two-character code that indicates the result of the request. You can find a complete list of Action Code values and API Error Code values on theRequest and Response Codes Reference.
  • Approval Code
    This is the six-digit authorization code provided by the sending or receiving issuer.


The Funds Transfer API also supports the Visa Push Payments Gateway Service (PPGS) which allows originators to send PullFundsTransactions (AFTs) and PushFundsTransactions (OCTs) to multiple U.S. debit networks. Visa PPGS offers clients the following benefits:

  • Common access for authorizations
    This enables the use of a single connection and message format to process debit transactions for multiple networks.
  • Management of routing priority
    This allows acquirers to establish a routing priority list in Visa for the Debit Networks. Additionally, Originators can provide priority information in the message for the Debit Networks whose cards they accept. Visa recommends that clients understand rules related to routing before implementation.
  • Multiple routing lists
    This allows client to create a set of rules for a push transaction that are different from those established for a pull transaction.


The following fields, in addition to the ones supported for Visa Direct transactions destined to Visa accounts, are required to send PullFundsTransactions (AFTs) and Push FundsTransactions (OCTs) to the debit networks:

  • Pseudo ABA Number
    This is a number that uniquely identifies the originator when they sign up to send Push Payment transactions. On enrollment, an originator will get a single pseudo-value that is assigned by Visa. The other debit networks will assign their own unique values for the originator.
  • Sharing Group Code
    This field is optionally used by originators to specify the network access priority. Visa makes a routing selection based on the routing priorities specified by both the originator and issuer preference for routing over the network.
  • Network ID
    This contains a code that specifies the network to be used for transmission of the message and determines the program rules that apply to the transaction.


For additional information, contact your Visa account representative.

Using the Funds Transfer API to Pull Funds

The Funds Transfer API enables Originators to use an API to withdraw (debit) funds from an eligible Visa card by directly submitting an Account Funding Transaction (AFT) into the Visa network. The AFT is used to pull funds from Visa accounts for the purposes of funding other non-merchant accounts, such as loading or topping up prepaid card accounts, moving funds into another financial account suchas a Certificate of Deposit or Individual Retirement Account, acting as the funding source of person-to-person payments, or to load a third-party digital wallet.

Once you have collected the necessary information from the sender, you can submit a pull funds transaction to Visa using either the PullFunds operation (for a single account) or the MultiPullFunds operation (for multiple accounts simultaneously). In a PullFunds operation, the request message includes the sender account, amount, and applicable point of service data elements for a single account. The PullFunds operation submits a single AFT transaction into Visa for the account specified in the request and returns the response variables for that account. A successful response message will include status information, a Visa-assigned transaction ID, and various approval codes.

In the MultiPullFunds operation, the sender account, amount, and point of service data elements are repeated in the request message for each account from which funds are to be pulled. The MultiPullFunds operation is most typically used when you have accumulated a “batch” of pull funds transactions and it is more convenient to submit them all in a single API call. A maximum of 499 sender accounts can be included in a single MultiPullFunds request. The MultiPullFunds operation will submit an individual AFT transaction into Visa for each account specified in the request and return a separate response for each one.

Because it may take more time to process a pull request that contains many accounts, a successful MultiPullFunds POST request returns a unique Status Identifier instead of individual account details. To retrieve the status and details for the accounts in the original request, submit a MultiPullFunds GET request using the Status Identifier from the POST response in the link header, which will then return status and details for each account in the original request.

You can find the technical specifications for both the PullFunds and MultiPullFunds operations on the API Reference link. Any pull funds transaction generally requires the following types of information in the request message:

  • Sender Account Information
    These fields include the Primary Account Number (PAN) of the Visa account from which the funds will be pulled as well as the account expiration date and billing currency.
  • Transaction Amount and Fees (if applicable)
    This is the total amount to be pulled from the sender account, inclusive of any fees that are assessed for the transaction. If you are charging a service fee and/or a foreign exchange rate markup in addition to the pull amount, the applicable fees must be included in the Transaction Amount and itemized separately in the applicable fields in the request message.
  • Point of Service Information
    The request requires several data fields that identify the nature of the point of service – whether card-present or card-not-present. If the sender data was collected through an online or mobile application, the point of service fields should be populated with values that are appropriate to a card-not-present or e-commerce transaction. Pull funds transactions originating in the U.S. are restricted to the e-commerce environment. Outside the U.S., if the sender account data was obtained with a card swipe at a physical point of service, the Track 1 and/or Track 2 and/or PIN data (as applicable) must be captured from the card reader/terminal device and include it in the applicable fields in pull funds request message.


You should log or otherwise retain all of the information returned in the PullFunds or MultiPullFunds response. If you must return funds to the sender for any reason, you may need to include several of the response values in a ReverseFunds or MultiReverseFunds request.

Using the Funds Transfer API to Push Funds

The Funds Transfer API enables Originators to use an API to send (credit) funds to an eligible Visa card by directly submitting an Original Credit Transaction (OCT) into the Visa network. The OCT is used to push funds to Visa accounts to enable services such as person-to-person money transfers, funds disbursem*nts, prepaid loads, and credit card bill payments.

Once you have collected funds from the sender, you can submit a push payment transaction to Visa using either the PushFunds operation (for a single account) or the MultiPushFunds operation (for multiple accounts simultaneously). In a PushFunds operation, the request message includes sender information, recipient information, and transaction amount data elements for a single account. The specific data elements required in the request may vary depending on the use case and local regulation. Refer to the technical specifications in the API Reference link and the local regulations that apply. The PushFunds operation submits a single OCT transaction into Visa for the recipient account specified in the request and returns the response variables for that account.

In the MultiPushFunds operation, the sender information, recipient information, and transaction amount data elements are repeated in the request message for each account to which funds are to be pushed. The MultiPushFunds operation is most typically used when you have accumulated a “batch” of push funds transactions and it is more convenient to submit them all in a single API call. A maximum of 499 recipient accounts can be included in a single MultiPushFunds request. The MultiPushFunds operation will submit an individual OCT transaction into Visa for each account specified in the request and return a separate response for each one.

Because it may take more time to process a push request that contains many accounts, a successful MultiPushFunds POST request returns a unique Status Identifier instead of account details. To retrieve the status and details for the accounts in the original request, submit a MultiPushFunds GET request using the Status Identifier from the POST response in the link header, which will then return status and details for each account in the original request.

You can find the technical specifications for both the PushFunds and MultiPushFunds operations on the API Reference link. Any push payment request generally requires the following types of information in the request message:

  • Recipient Information
    These fields include the recipient’s primary account number, name, and billing currency of the Visa account. Recipient name and billing currency may be selectively required depending on the use case and processing methodology.
  • Transaction Amount
    This is the amount to be delivered to the recipient (in the recipient currency). Note that Visa imposes both geographical and use case-based limits on the maximum amount that can be included in a single transaction. For example, domestic person-to-person transfers have a default limit of USD$2,500. There are exceptions, such as in the U.S., where a limit of USD$10,000 per transaction applies. Refer to the API Reference link for specific details.
  • Sender Information
    These fields include information about the sender, such as a name and address, date of birth, and either the sender’s primary account number or a reference number that refers to the source of the funds being sent to the recipient. For the purposes of risk, sanctions enforcement, and anti-money laundering/anti-terrorist financing controls, and regardless of funding source or access channel, you are responsible for verifying the identity of the sender before submitting a push payment request.
  • Transaction Identifier
    If a PushFunds operation follows a corresponding PullFunds operation, you are required to take the Visa Transaction Identifier received in the PullFunds response and populate it into the same field in the PushFunds request in order to link the two transactions together.


Fast Funds

As part of a push payment service, you may want to inform the sender or the recipient about when to expect the funds to become available. For a conventional push payment, the recipient issuer must make the funds available in the recipient account as soon as possible but no later than two business days. Many issuers now participate, or are mandated to participate, in Fast Funds, which means that they agree to make funds available in the recipient account within 30 minutes of approving the push payment authorization. You can use the Funds Transfer Attributes Inquiry API to determine if the recipient issuer participates in Fast Funds.


Geographic Restrictions
A common requirement of person-to-person payments and other push payment use cases is the need to restrict transfers to a limited number of geographies, either due to business considerations or to local law and compliance requirements. For a domestic funds transfer program, this could mean restricting push payments to intra-country recipients. For a cross-border remittance program, this could mean restricting push payments to a selected group of destination countries.

Traditionally, Originators had to implement the functionality within their own systems to maintain a list of prohibited or permitted countries, pre-validate the country of the recipient account, and then submit or block the transaction as needed.

Visa has optional functionality in the Funds Transfer API that allows Originators to configure geographic restrictions within Visa Direct during production onboarding so that they can be automatically enforced by Visa. If you choose this option, Visa will automatically apply your pre-configured geographic rules to every Funds Transfer API request and will block any push funds transaction to a card issued in a country that is restricted based on your configuration rules. Contact [emailprotected] for more information.


Foreign Exchange (FX) Markup
Many Originators want to incorporate a foreign exchange markup on cross-border money transfers as an additional source of revenue. Traditionally, Originators had to maintain their own lists of reference rates, look up the currency of the recipient account and applicable reference rates for each transaction, and apply the markup on top of the reference rate in order to determine what rate to use for each individual transaction. For Originators who operate in many markets, this can be a complex and costly process.

Visa has optional functionality that allows Originators to configure either a single standard FX markup rate to be applied to all transactions or separate FX markup rates for specific currency pairs. If you choose this option during production onboarding, when you use the Foreign Exchange Rates API to determine the transaction amount in recipient currency, Visa will automatically apply your preconfigured markup rate for the currency pair when converting the source amount into destination currency. The Foreign Exchange Rates API will return Visa's daily base rate, the actual conversion rate used (base rate plus markup), and the recipient transaction amount. Review the Foreign Exchange Rates API for more details or contact [emailprotected] for more information.

Using the Funds Transfer API to Return Funds

The Funds Transfer API enables Originators to use an API to return (credit back) funds to a Visa card from which funds were withdrawn earlier using a Funds Transfer API pull funds operation. If a push payment fails to complete, you must reverse the original pull funds transaction by using either the ReverseFunds operation (for a single account) or the MultiReverseFunds operation (for multiple accounts simultaneously).

In a ReverseFunds operation, the request message includes the sender account, amount, and applicable point of service data elements for a single account to which funds are to be returned. The ReverseFunds operation submits a single AFT reversal transaction into Visa for the account specified in the request and returns the response variables for that account.

In the MultiReverseFunds operation, the sender account, amount, and point of service data elements are repeated in the request message for each account to which funds must be returned. The MultiReverseFunds operation is most typically used when you have accumulated a “batch” of reversal transactions and it is more convenient to submit them all in a single API call. The MultiReverseFunds operation will submit an individual AFT reversal transaction into Visa for each account specified in the request and return a separate response for each one.

Because it may take more time to process a reversal request that contains many accounts, a successful MultiReverseFunds POST request returns a unique Status Identifier instead of account details. To retrieve the status and details for the accounts in the original request, submit a MultiReverseFunds GET request using the Status Identifier from the POST response in the link header, which will return status and details for each account in the original request.

You can find the technical specifications for both the ReverseFunds and MultiReverseFunds operations on the API Reference link. Any reverse funds request generally requires the following type of information in the request message:

  • Data Elements from the Original Pull Funds Request
    The reversal request must include some of the fields that were part of the original pull funds request and its response, including theSystems Trace Audit Number, Retrieval Reference Number, Transaction Identifier, Approval Code, Date and Time of Transmission, and Acquiring BIN.
  • Sender Account Information
    These fields include the primary account number of the Visa account to which the funds will be returned as well as the account expiration date and billing currency.
  • Transaction Amount and Fees (if applicable)
    This is the total amount to be returned to the sender, inclusive of any fees that you may have assessed on the original pull funds transaction. If you charged a service fee and/or a foreign exchange rate markup in addition to the pull amount, the applicable fees must be included in the Transaction Amount and itemized separately in the applicable fields in the request.
  • Point of Service Information
    For a funds reversal request, you should populate the point of service fields with values that are appropriate to a card-not-present or e-commerce transaction.


If a MultiPushFunds operation was used to push funds to a batch of Visa accounts, remember that the response message will contain a separate results status for each account number submitted. Since each account is processed individually by Visa, some push funds requests within a MultiPushFunds operation may have succeeded and others may have failed. Before submitting either a ReverseFunds or MultiReverseFunds operation request, you must individually assess the results status of each account and only send reversal requests for those accounts with failed push payment authorizations.

Using Mobile Push Payment API

Mobile Push Paymentis a simple, secure, and fast way to pay and be paid using mobile phones (both smart phones and feature phones) that rides the rails of the Visa Direct APIs.Mobile Push Paymentopens a new channel to access the Visa network by combining the power of ubiquitous mobile connected devices with lower risk push payments as the underlying transaction.Mobile Push Payment is delivered by a unique packaging of the Funds Transfer API that has been optimized to serve markets where traditional merchant acceptance is poor and a low cost, lower risk payment acceptance capability is needed.

How QRWorks

How to Use Visa Direct (3)

The consumer initiates a payment by scanning a QR code at the merchant site, tapping an NFC device, or key entering the merchant and transaction details into their Mobile Push Payment-enabled feature phone orMobile Push Paymentsmart phone application. The consumer's issuer then uses theMobile Push PaymentAPI to submit a push paymenttransaction into Visa that will transfer the payment amount from the consumer's Visa card to the merchant's Visa card. When the push payment is received by the merchant's issuer (acquirer), the merchant is notified that the amount of the payment has been deposited into their Visa account. When the merchant issuer sends the approved authorization for the push payment back to Visa, the consumer's issuer notifies them via theMobile Push Paymentapplication that the transaction is complete.

TheMobile Push PaymentAPI includes several additional fields that are not used forFunds TransferAPI and (depending on the use case) excludes some fields that are normally present in a Funds Transfer API. You can find the technical specifications for theMobile Push PaymentAPI on theAPI Referencelink.

Mobile Push Paymentapplications typically support one or more of four basic use cases: person-to-person transfers, payments to merchants, cash in (deposit to a Visa card via an agent), and cash out (withdrawal from a Visa card via an agent). For person-to-person transfers, you should use the standard Funds Transfer API push payment operations. For merchant payments, cash in, and cash out, you should use theMobile Push PaymentAPI.

Using Mobile Push Payment SDK

TheMobile Push PaymentSDKs provide the software library that you can embed within your mobile app to pay and be paid using mobile phones. The mobile SDK contains a unified overallMobile Push Paymentexperience (with limited customization) that enablesMobile Push Paymenttransactions, such as peer-to-peer money transfer, cash withdrawal and merchant payments. Each library launches a specific sequence of user interface and interaction required to complete theMobile Push Paymenttransaction.

TheMobile Push PaymentSDKs are available for use by Issuers and Acquirers.

You can view and download all Visa Direct assets, such as SDKs from the Visa Developer Project Dashboard. Please refer to Access Assets for more details.

Using Alias Directory Service

Visa Alias Directory Service allows consumers and financial institutions to map an Alias such as an email or mobile number to a card. Consumers can use the Alias for a push payment without having to share card number details, which provides security and better user experience.

Please see below an example of how Alias can be used in push payments:

How to Use Visa Direct (4)

  1. Dimitry opens his mobile banking application to send money to a friend.
  2. Dimitry is presented with his phone contact list. Each contact who has Alias payments enabled is already highlighted.
  3. He chooses to send money to Gennadi and enters the amount. Dimitry also selects the correct account to fund the transfer from.
  4. Dimitry confirms the transfer details.
  5. Done! Dimitry has now sent money to Gennadi using Gennadi's phone number.


To learn more, please visit thispage.

Using the Watch List Screening API

The Watch List Screening API accepts the name, city, and country of a person and returns a score that indicates how closely that person's information matches to any entries on the regulatory watch lists supported by the API. Currently, the API only screens against the United States Office of Foreign Assets Control (OFAC) Specially-Designated Nationals (SDN) sanctions list.

For cross-border person-to-person money transfers, you may or, in some cases, must screen sender information against national or international watch (or sanctions) lists before allowing your customer to send money to another Visa cardholder. Depending on the nature of the services your project provides, there may be other situations in which it may be prudent to prescreen customer information before delivering services.

To use the Watch List Screening API, you must provide the following information in the request about the person being screened:

  • Name
    This is the name of the person to be screened. The name can be any alphanumeric value up to 30 characters in length (and in the Latin character set). The suggested format of the name field is Last Name/Family Surname + space + Additional Last Name/Family Surname (if applicable) + space + First Name + space + Middle Initial/Middle Name.
  • City and Country
    These fields are the city name and the alphabetic or numeric ISO country code of the address of the person being screened.


The API uses a “Fuzzy Match” algorithm to assess how closely the person’s information matches entries in the regulatory watch list. The algorithm produces a match score between 000 (low likelihood of a match) and 100 (high likelihood of a match). The response message includes both the match score and a Status field. The value “Not Approved” in the Status field indicates that Visa would likely decline a push payment transaction involving the person whose name was provided in the request.

For tracking purposes, if you will be using the Watch List Screening API in conjunction with calls to the Funds Transfer API, please populate the following optional fields in the request message (Acquiring BIN and Acquirer Country Code) with the corresponding values that you plan to use in the Funds Transfer calls. Otherwise, you may exclude all of those fields from the request.

Note that Visa also automatically watch list screens all cross-border person-to-person money transfer OCTs intended for delivery to a recipient Visa account in all countries where screening of inboundtransactions is required. In that case, Visa provides the watch list match score to the recipient issuer in the OCT transaction.

The Watch List Screening API is provided as a service to developers and is available to all developers in both sandbox and production. Using it does not relieve you of any obligations you may have to comply with applicable law and regulations. Visa makes no representations or warranties with respect to the Watch List Screening API or its results nor shall Visa have any liability whatsoever for the scoring results or the Watch List Screening API. Visa retains the right to review your project's implementation of this API prior to production onboarding to ensure appropriate use of its features.

Using the Related APIs for Funds Transfer

As you build your new money transfer, prepaid load, credit card bill pay, or funds disbursem*nt solutions using the Funds Transfer orMobile Push PaymentAPIs, there are three other APIs available from Visa that may be useful in your project.

Payment Account Validation
The Payment Account Validation API provides several means for you to determine if a particular Visa account is valid and in good standing. Visa recommends that you use this API to validate the sender's account information before invoking a PullFunds or MultiPullFunds API call.

Payment Account Attributes Inquiry
The Payment Account Attributes Inquiry service includes two APIs (the General Attributes Inquiry and the Funds Transfer Attributes Inquiry) that enable you to look up important attributes of a Visa account that you may need in order to successfully implement a funds transfer project. In particular, you may need to know the type of account, what the billing currency is, who the issuer is and in what country, whether the recipient issuer is able to receive push payments or participates in Fast Funds, or whether the account is blocked from receiving certain types of push payments.

Foreign Exchange Rates
If your project supports cross-border transfers, you must notify the sender of the amount in the sender’s currency that will be withdrawn from the sender’s account. You may also want to notify thesender, the recipient, or both of the amount in the recipient’s currency of the push payment. The Foreign Exchange Rates API enables you to input a source amount and a source and destination currency pair and receive back the current day Visa exchange rate and the converted amount in the destination currency. For example, if the sender wants to withdraw a specific amount, this API will enable you to determine how much the recipient will then receive in their local currency. Similarly, if the sender wants the recipient to receive a specific amount in their local currency, this API will enable you to determine how much must be from the sender’s account to do so.

Service Activation Requirements

Customer Disclosure Requirements
Originators must provide the Terms and Conditions for their program to the customer and the customer must accept them before using any Visa Direct-based service. You are responsible for updating your Terms and Conditions to include the required disclosures and as required by law and industry practices. Visa strongly recommends that you prompt the sender to agree to the Terms and Conditions prior to initiating any API calls and retain evidence of the customer’s agreement. Visa retains the right to request that you provide copies of your updated Terms and Conditions to confirm that you are complying with these requirements.

Visa also requires you to provide senders with information related to fees and other material terms in connection with their push payments service. A clear itemized description of all Originator-assessed fees, including foreign exchange fees, if applicable, associated with the transaction must be communicated to senders subject to and in accordance with applicable laws and regulations of the area of operation of the Originator. You must provide senders with the opportunity to agree to the fees and proceed with or cancel the transaction.

Visa also requires you to comply with the Visa Core Rules and Visa Product and Service Rules (formerly, the Visa International Operating Regulations) as well as local regulations and laws. You must comply with all applicable sanctions and “Know Your Customer”, anti-money laundering, and anti-terrorist financing laws. If you use a third party agent, the third party agent must follow all Visa Core Rules and Visa Product and Service Rules related to working with such agents.

Best Practices and Tips for Using Visa Direct

You are expected to perform the required Know Your Customer (KYC), fraud, and eligibility checks on the sender and/or recipient at the time of transaction. Visa provides some resources to help with that, such as the Watch List Screening and Payment Account Validation APIs, but you should implement the appropriate functionality within your web, mobile, ATM, or branch application.

The Funds Transfer PullFunds operations should not be used to purchase goods and services from a merchant or to transfer funds to a merchant account except as part of an approved Visa Direct program (such as Mobile Push Payment) that permits them. Visa monitors to ensure that PullFunds operations are not used in the place of standard purchase transactions with merchants. As a result, Visa recommends that you capture information from sending cardholders about the purpose of the transaction in order to determine proper use of the Funds Transfer API.

Visa also recommends that you screen transactions for high risk and/or sanctioned transactions and set velocity limits. Although there are no specific limits for Originators, the Visa risk team reviews the limits defined by Originators during the production onboarding process and may ask you to make changes appropriately.

Originators must also ensure that their project handles sender and recipient personal data in compliance with the Payment Card Industry (PCI) Data Security Standards and applicable law. Sender and recipient information must be stored and transmitted securely, with regular reviews of data security policies to ensure that criminals, hackers, or other unauthorized people cannot break into data warehouses or intercept data during transmission.

How to Use Visa Direct (2024)

FAQs

How does the Visa direct work? ›

Visa Direct provides Originators (financial institutions and eligible third parties such as person-to-person payment service providers, merchants, corporations, financial technology companies and service providers, through their applicable financial institutions) with a mechanism to push payments directly into Visa ...

How to send money through Visa Direct? ›

How does Visa Direct work?
  1. Access the service through Netbanking, mobile or ATM.
  2. Enter the recipient's 16 digit Visa card number and the amount you want to send.
  3. The money will be received into the recipient Visa credit, debit or prepaid card.
  4. Recipient can use the received funds at any Visa merchant or ATM.

What is the difference between Visa and Visa direct? ›

The difference between Visa Checkout and Visa Direct is that Visa Checkout acts like a virtual wallet where Visa Direct does P2P payments and funds disbursem*nts. Below is some more information on what each API does.

Is Visa Direct like Zelle? ›

Visa Direct is Visa's version of Zelle or Venmo, it's the instant-sending tool created by the credit card giant that gives card-holders the ability to send payments immediately.

What are the benefits of visa Direct? ›

Benefits of Visa Direct

Same-day, cross-border delivery is typically not possible, but with Visa Direct from Pateno, it's a seamless process. Domestic transfers can also be completed instantly. Send transfers directly to existing cards or accounts from a single access point.

Is visa Direct safe to use? ›

Visa Direct is helping create the infrastructure necessary for a secure, connected global economy. Built with Visa's risk management products, Visa Direct benefits from our relationships with select partners who are innovating at the forefront of identity management, fraud management, and artificial intelligence.

How long does a Visa direct transfer take? ›

Send money to your recipient's eligible Visa Card in over 170 countries and territories. The recipient usually receives funds within 24-48 hours4,5.

What is Visa Direct pay? ›

Visa Direct Payouts is a service that enables money to be pushed into bank, debit card4, or prepaid card4 accounts to complete business payouts, P2P transfers, app withdrawals, and more.

Does PayPal use Visa Direct? ›

This collaboration expands PayPal's Instant Transfer service, which leverages Visa Direct for real-time1 payment capabilities, to global markets and enables fast domestic and cross-border digital payments.

What is the limit on Visa direct? ›

Discover the Visa Direct service limits for all transactions to a card: Limit per transaction: 1,000 USD. Limit per day: 2,500 USD. Limit per week: 5,000 USD.

Does Visa Direct have fees? ›

Visa Direct is a product that powers P2P payments for businesses. Therefore, consumers such as you and me will not pay transaction costs on Visa Direct. However, if you are a businesses, then there may be a cost associated with the ability to initiate a Visa Direct P2P transaction.

How to send money with Visa Direct? ›

Begin your money transfer

Enter the destination, sending amount and payment method. Choose 'Visa Direct' as the receiving method. This will transfer money to the bank account linked to your loved one's Visa debit card.

What is Visa Direct on my bank statement? ›

Visa Direct is a network that facilitates funds transfers by Visa's client financial institutions.

Does Bank of America use Visa Direct? ›

The service relies on the Visa Direct network to enable fast payments to debit and prepaid cards and bank accounts in 170 countries, though only cards can be accessed within the United States. Mastercard Inc. offers a similarly designed service called Mastercard Send.

What is the payment limit for visa Direct? ›

Discover the Visa Direct service limits for all transactions to a card: Limit per transaction: 1,000 USD. Limit per day: 2,500 USD. Limit per week: 5,000 USD.

How long does it take to get a visa direct payment? ›

Visa requires fast-funds enabled issuers to make funds available to their recipient cardholders within a maximum of 30 minutes of approving the transaction.

Is visa Direct real time? ›

Fast, seamless experiences. Conveniently send money to cards and wallets in real-time,¹ and to accounts typically settling in one day for most routes.

Does visa Direct have fees? ›

Visa Direct is a product that powers P2P payments for businesses. Therefore, consumers such as you and me will not pay transaction costs on Visa Direct. However, if you are a businesses, then there may be a cost associated with the ability to initiate a Visa Direct P2P transaction.

Top Articles
Creating a Return/Risk Profile for an Equity Investment
How to Become an NFT Creator without Coding Skills?
サリスF70プッシュへのプッシュフルエクステンションヘビーデューティドロワーランナー
Csuf Mail
Nambe Flatware Discontinued
Craigslist Southern Oregon Coast
Kutty Movie Net
Selinas Gold Full Movie Netflix
Pepsi Collaboration
Weldmotor Vehicle.com
Julia Is A Doctor Who Treats Patients
Amc Theatres Website
How To Find IP Address From Discord | ITGeared
Nccer Log In
Times Thanksgiving Meals
Zipcar Miami Airport
Where Is The Nearest Five Below
Budokai Z Pre Alpha Trello
Lord Lord You Been Blessing Me Lyrics
Aluminum Model Toys
Maryland Parole Hearing Schedule 2023
Aaa Saugus Ma Appointment
Eurail Pass Review: Is It Worth the Price?
Mcclure Nba Dfs
Vineland Daily Journal Obits
Vision Government Solutions Stamford Ct
Pair sentenced for May 2023 murder of Roger Driesel
Sour Animal Strain Leafly
Greatpeople.me Login Schedule
افضل موقع سكسي عربي
18443168434
Keanu Reeves cements his place in action genre with ‘John Wick: Chapter 4’
Wayne Carini How Tall
Classic Buttermilk Pancakes
Mannat Indian Grocers
Entourage Yearbook Login
Sa 0 Spn 2659 Fmi 18
Sveta Håkansson
Brooklyn Park City Hall
How to paint a brick fireplace (the right way)
Body made of crushed little stars - Sp1cy_Rice_W1th_J4S - 僕のヒーローアカデミア | Boku no Hero Academia
Top 100 Golfclubs - Albrecht Golf Guide bei 1Golf.eu
Carabao Cup Wiki
Swissport Timecard
Appsanywhere Mst
NCCAC
Craigslist Garage Sales Schenectady Ny
Us 25 Yard Sale Map
Maria Butina Bikini
Myrtle Beach Pelicans Stadium Seating Chart
The many times it was so much worse
Perolamartinezts
Latest Posts
Article information

Author: Dr. Pierre Goyette

Last Updated:

Views: 6259

Rating: 5 / 5 (70 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Dr. Pierre Goyette

Birthday: 1998-01-29

Address: Apt. 611 3357 Yong Plain, West Audra, IL 70053

Phone: +5819954278378

Job: Construction Director

Hobby: Embroidery, Creative writing, Shopping, Driving, Stand-up comedy, Coffee roasting, Scrapbooking

Introduction: My name is Dr. Pierre Goyette, I am a enchanting, powerful, jolly, rich, graceful, colorful, zany person who loves writing and wants to share my knowledge and understanding with you.