Skip to main content
To handle PayPal via the API directly, follow the quick start guide on direct API integrations, or use the steps below.

Create a transactions

To create a PayPal transaction, set the method to paypal and the redirect_url to the endpoint of the app that can handle the customer returning once they’ve completed approving the transaction on paypal.com. See the POST /transactions API endpoint for more details.
var transaction = await _client.Transactions.CreateAsync(
    transactionCreate: new TransactionCreate()
    {
        Amount = 1299,
        Currency = "USD",
        Country = "US",
        PaymentMethod =
            TransactionCreatePaymentMethod.CreateCheckoutSessionWithUrlPaymentMethodCreate(
                new RedirectPaymentMethodCreate()
                {
                    Method = "paypal",
                    RedirectUrl = "https://example.com/callback",
                }
            ),
    }
);
If successful, the response of this transaction includes a status set to buyer_approval_pending as well as a payment_method.approval_url.
{
    "type": "transaction",
    "id": "0c41c8df-27f4-480e-97f0-9401558ae25e",
    "status": "buyer_approval_pending",
    "intent": "authorize",
    "payment_method": {
        "type": "payment-method",
        "method": "paypal",
        "mode": "redirect",
        "approval_url": "https://www.sandbox.paypal.com/checkoutnow?token=7NP38594266148058",
       ...
    },
    "method": "paypal",
    ...
}

About tokenization

If the PayPal account supports Reference Transactions, then pass the store=true parameter to each request to vault a buyer’s PayPal account for future use. This does require ticking the Payment tokenization toggle for the PayPal connection in the dashboard.
Tokenization toggle
Once stored, use the stored PayPal account for future transactions without redirecting the buyer to PayPal.

Handle redirect to PayPal

The app needs to redirect the customer to PayPal where they are required to authenticate the payment. To do so, redirect the customer to the payment_method.approval_url. After they’ve authenticated themselves, the customer is redirected back to the redirect_url that was set when creating the transaction.
If the customer abandons the checkout or somehow experiences network connection issues, the transaction state can get out of sync between the app and the system. The following best practices are recommended in handling these situations.

Handle the return to the app

When the customer is redirected back to the app, the transaction status is not known. The app therefore needs to call the API to get the latest transaction status. To do this, the redirect_url is appended with the transaction_id.
[redirect_url]?transaction_id=2f37e0d0-5549-42c4-9c5c-e03d5fa97148&transaction_status=capture_succeeded
Although we also provide the transaction_status in this callback, it’s recommended to also fetch the latest status via the API, as the status may have changed since.
After handling the redirect, display a message to the customer letting them know the result of the transaction.

Fetch the latest status

Finally, after the transaction has been created your application can get the latest details and status [using the transaction ID](/reference/transactions/get-transaction received via the callback to the redirect URL, or on direct callback from the API. The transaction includes details about the payment method used and the status of the transaction.
{
  "type": "transaction",
  "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
  "status": "authorized",
  "amount": 1299,
  "currency": "AUD",
  "payment_method": {
    "type": "payment-method",
    "id": "77a76f7e-d2de-4bbc-ada9-d6a0015e6bd5",
    "method": "card",
    ...
  },
  ...
}
The transaction includes details about the payment method used and the status of the transaction.
{
  "type": "transaction",
  "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
  "status": "authorized",
  "amount": 1299,
  "currency": "AUD",
  "payment_method": {
    "type": "payment-method",
    "id": "77a76f7e-d2de-4bbc-ada9-d6a0015e6bd5",
    "method": "paypal",
    ...
  },
  ...
}
Visit the API reference documentation for full details about the transaction resource, and any other API.

Webhooks

In order to receive timely updates regarding the status of PayPal transactions please set up a PayPal webhook URL. In the PayPal Merchant Dashboard create a webhook with that URL. Once set up, a webhook ID is provided by PayPal, provide this back to the team.

FraudNet

FraudNet is a PayPal-developed, JavaScript library that collects browser-based data to help reduce fraud. Upon checkout, the FraudNet library sends data elements to PayPal Risk Services for fraud and risk assessment. When creating transactions using PayPal Billing Agreements, the PayPal FraudNet library must be included on the checkout page for all transactions. When using Embed, the PayPal FraudNet library is included automatically. If using Direct API directly, use the device fingerprinting library which includes the PayPal FraudNet library.

Set transaction context values (STC)

Set transaction context values (STC) are used to provide additional information to support PayPal’s advanced risk analysis. Below is an outline of the values required. These values should be included in the connection options for PayPal (connection_options[paypal-paypal]). Below are examples for a retail or a marketplace transaction where retail transactions are those sold directly by the merchant on record, while a marketplace transaction is sold by a third party on the merchant’s website. PayPal uses sender and receiver to refer to the transfer of funds where the sender is the buyer who is transmitting funds to the reciever or merchant.
Data Field NameDescriptionUse caseSample values
sender_account_idUnique buyer IDBothbuyer_id or buyer’s external_identifier
sender_first_nameBuyer’s first nameBothfirst_name
sender_last_nameBuyer’s last nameBothlast_name
sender_emailBuyer’s email addressBothemail_address
sender_phoneBuyer’s phone numberBothphone_number
sender_country_codeBuyer’s country code in ISO Alpha-2 Country codeBothAU or NZ
sender_create_dateCreation date of the buyer’s account in ISO 8601 date formatBothcreated_at
sender_signup_ipIP address that the buyer used to sign up to the platformMarketplace10.220.90.20
sender_popularity_scoreRisk-based scoring on the buyer, best efforts assessment by the marketplaceMarketplacehigh, medium or low
receiver_account_idUnique seller IDMarketplaceA12345N343
receiver_create_dateDate of seller creation on marketplace platform in ISO 8601 date formatMarketplace2024-06-09T 19:14:55.277-0:00
receiver_emailSeller’s registered email on the marketplace platformMarketplaceseller@marketplace.com
receiver_address_country_codeSellers’s country code in ISO Alpha-2 Country codeMarketplaceUS
business_nameSeller’s business name on the marketplaceMarketplaceSeller Pty Ltd
recipient_popularity_scoreRisk-based scoring on the seller, best efforts assessment by the marketplaceMarketplacehigh, medium or low
first_interaction_dateDate of the first integration between the buyer and seller on the marketplaceMarketplace2024-06-09T 19:14:55.277-0:00
txn_count_totalTotal number of transactions between the buyer and seller to date, across all methodsMarketplace3
delivery_informationDelivery method for an intangible item if there is an associated email/phone. It acts as the shipping address for an intangible, only required for intangible goods (for example gift cards)Retailphone_number or email_address
highrisk_txn_flagFlag for high-risk items such as gift cards where (1) is high risk and (0) is non high riskRetailBoolean value (0 or 1)
transaction_is_tangibleThe item being solid is tangible (1) or intangible (0)MarketplaceBoolean value (0 or 1)
verticalVertical flag for the seller transactions that are in several verticalsBothRetail, Household goods, clothing, tickets