Payment Provider App Development Guide
Glossary
Payment Provider
Actually, short for Payment Service Provider, is any entity that provides all the necessary resources to allow a buyer to pay a merchant for purchased goods or hired services. These resources include information for the potential buyer about the available payment methods, installments, promotions, discounts, etc., as well as the technological resources to execute a payment.
Payment Method Type
The resource that allows a transfer of money from the consumer to the merchant. It can be any of, but not limited to:
- Credit card
- Debit card
- Bank debit (aka "online debit")
- Boleto (Brazil only)
- PIX (Brazil only)
- Ticket (aka "offline payment" or "payment voucher")
- Wire transfer (between two bank accounts via traditional transfer)
- Wallet (i.e. consumer's account credit)
- Cash
- Others
Payment Method ID
For instance, if the Payment Method Type is credit card, then an example of Payment Method ID would be Visa, Mastercard or American Express. Some Payment Method Types, for example PIX, only have one Payment Method ID which happens to be PIX. Even though it's redundant, it leaves space for future variations.
Payment Option
The Payment Method is the resource that allows the transfer of money from the consumer to the merchant, while the Payment Option is how the Payment Method is used to execute the Transaction. In the physical world, if a credit card is selected as the Payment Method, then the payment could be executed using a card reader, or through an app that reads a QR code and processes the credit card information, etc.
A Payment Option has three main properties:
- The Payment Provider that will execute the Transaction.
- One or more supported Payment Method Types.
- An Integration Type.
Integration Type
In terms of user experience, there might be different ways to integrate a Payment Option into a store. Some of them are:
- Transparent: The whole process takes place in the store's website and all the relevant payment information are filled in a form rendered by the store, creating a seamless experience for the buyer.
- External: At some point, the buyer is redirected to a website or app under the Payment Provider's domain where the buyer completes the payment process.
- Modal: When the user submits our checkout form, a modal rendered by the Payment Provider is displayed, and the user completes the payment process within it.
Payment App
The development of a Nuvemshop Payment App, technologically speaking, more often than not, includes implementing our auth flow, REST APIs and webhooks, as well as the Payment Provider's authentication flow and backend-to-backend APIs.
Also, a Payment App includes a JavaScript implementation of our platform's checkout event handlers. This event handlers usually make requests to the app's backend which, in turn, makes requests to the Payment Provider's APIs.
To illustrate the Payment App concept, let's say we have a Payment Provider called "Acme Payments", here's a classic implementation diagram: