Payflow Payment Gateway: Getting Started
Last updated: Sept 18th, 7:14pm
This guide presents the following topics to get you up and running:
For more information
- Create a Payflow Gateway Test Account
- Getting Started with Hosted Pages
- Payflow Gateway Developer's Guide
- Processor Setup Guide
- PayPal Community - Payflow
Overview
Merchants with an existing Internet merchant account can use Payflow Payment Gateway, or Payflow. Payflow uses real-time, encrypted communication to process debit and credit card transactions. To make test calls to Payflow, submit transaction data to the pilot endpoint (https://pilot-payflowpro.paypal.com).
This document is for demonstration only. To understand the rich feature-set of this product, see the Payflow Gateway landing page, which includes links to documentation.
Key concepts
A payment gateway provides a merchant with access to payment processing networks. When a merchant signs up with a payment gateway, the merchant can keep that gateway even if the merchant changes banks.
This document describes just one way to use Payflow. Merchants integrate with Payflow in different ways, based on their specific needs.
Make your first call
To send transaction data to Payflow, set up an account and submit data to the pilot endpoint (https://pilot-payflowpro.paypal.com).
Get a Payflow account
- Review the information on the Payflow page and click the Get Started Today button.
- Sign up for a Payflow Pro account. Please note that signing up includes the requirement that your credit card will be billed; please review the information in the signup pages.
- After getting the account, confirm that you can log in to PayPal Manager.
Send name-value pairs to the pilot URL
As described in the Payflow Gateway Developer's Guide (HTML), you can send test data, e.g. as name-value pairs, to the Payflow pilot endpoint (https://pilot-payflowpro.paypal.com).
The example below contains nine parameters:
Name | Description |
---|---|
PARTNER |
The Payflow partner. The example below uses PayPal, since in this document, the account was purchased directly from PayPal. If an account was provided by an authorized PayPal reseller, who registered a Payflow user, then the ID provided by the reseller is used. |
PWD |
The password that you specified when you got the Payflow account, in the previous steps. |
VENDOR |
The ID that you specified when you got the Payflow account, in the
previous steps (same as USER ). That is, the merchant login
ID for the account.
|
USER |
The ID that you specified when you got the Payflow account, in the
previous steps (same as VENDOR , because for this example,
we assume that you haven't set up additional users on the Payflow
account).
|
TENDER |
The payment method. For example, C for credit card.
|
ACCT |
The buyer's credit card number. |
TRXTYPE |
The type of the transaction. For example, S for sale.
|
EXPDATE |
The expiration date of the credit card. |
AMT |
The amount of the sale. |
Use your values for a test sales transaction
The cURL command below uses several parameters to submit data to Payflow.
In the case of four parameters (PARTNER
, PWD
,
VENDOR
, and USER
), you must
substitute your own values.
1curl https://pilot-payflowpro.paypal.com \ -s \ --insecure \ -d PARTNER= \ -d PWD= \ -d VENDOR= \ -d USER= \ -d TENDER=C \ -d ACCT=5105105105105100 \ -d TRXTYPE=S \ -d EXPDATE=1221 \ -d AMT=1.00
The response is similar to this response:
1RESULT=0&2PNREF=VFHA1234567&3RESPMSG=Approved&4AUTHCODE=123PNI
The response contains:
RESULT=0
. Indicates approved.PNREF
. The Payflow transaction ID value.-
RESPMSG
. The response message. Value isApproved
. AUTHCODE
. The approval code value.
Next steps
Review the Payflow features, options, and documentation available on the Payflow Gateway Landing Page.