Save cards for purchase later with the JavaScript SDK

DocsCurrent

Last updated: Apr 10th, 4:41am

Save payment methods to charge payers after a set amount of time. For example, you can offer a free trial and charge payers after the trial expires. Payers don't need to be present when charged. No checkout required.

Use the SDK to save a payer's card if you aren't PCI Compliant - SAQ A but want to save credit or debit cards.


Availability

See Supported Countries

  • Australia
  • Austria
  • Belgium
  • Bulgaria
  • Canada
  • China
  • Cyprus
  • Czech Republic
  • Denmark
  • Estonia
  • Finland
  • France
  • Germany
  • Hong Kong
  • Hungary
  • Ireland
  • Italy
  • Japan
  • Latvia
  • Liechtenstein
  • Lithuania
  • Luxembourg
  • Malta
  • Netherlands
  • Norway
  • Poland
  • Portugal
  • Romania
  • Singapore
  • Slovakia
  • Slovenia
  • Spain
  • Sweden
  • United Kingdom
  • United States

Know before you code

  • You are responsible for the front-end user experience. The JavaScript SDK provides back-end support.

  • To save payment methods, you must be able to identify payers uniquely. For example, payers create an account and log in to your site.
  • Complete the steps in Get started to get the following sandbox account information from the Developer Dashboard:
    • Your sandbox account login information
    • Your access token

  • This client-side integration uses information passed through the CardFields component to save a card without a transaction.
  • The SDK saves the following card types for purchase later:
    • American Express
    • Discover
    • Mastercard
    • Visa

  • You'll need an existing advanced credit and debit integration. PayPal must approve your business account for advanced credit and debit card payments.

How it works

PayPal encrypts payment method information and stores it in a digital vault for that customer.

  1. The payer saves their payment method.
  2. For a first-time payer, PayPal creates a customer ID. Store this within your system for future use.
  3. When the customer returns to your website and is ready to check out, pass their PayPal-generated customer ID to the JavaScript SDK. The customer ID tells the JavaScript SDK to save or reuse a saved payment method.
  4. The payer completes a billing agreement.
  5. The JavaScript SDK populates the checkout page with each saved payment method. Each payment method appears as a one-click button next to other ways to pay.

The checkout process is now shorter because it uses saved payment information.

1

Set up account to save payments

Set up your sandbox and live business accounts to save payment methods:

  1. Log in to the Developer Dashboard.
  2. Under REST API apps, select your app name.
  3. Under Sandbox App Settings > App Feature Options, check Accept payments.
  4. Expand Advanced options. Confirm that Vault is selected.

2

Add SDK to HTML page

Pass your client ID and merchant ID to the SDK to identify yourself and the merchant you're saving payment methods for. Replace CLIENT-ID with your app's client ID and MERCHANT-ID in the following sample:

    1<script src="https://www.paypal.com/sdk/js?components=card-fields&client-id=CLIENT-ID&merchant-id=MERCHANT-ID"</script>

    Modify the code

    • Change CLIENT_ID to your client ID.
    • Change MERCHANT_ID to your merchant ID.
    3

    Create setup token

    You request a setup token from your server. Pass the setup token from your server to the SDK with the createVaultSetupToken callback.

    The createVaultSetupToken callback:

    • Calls the server endpoint you created to generate and retrieve the setup token.
    • Makes a request to your server endpoint.

    Then, your server uses its access token to create and return the setup token to the client.

    Any errors that occur while creating a setup token show up in the onError callback provided to the card fields component.

    Create a setup token for cards that have:

    • No verification
    • 3D Secure verification

    Supported callback

    No verification

    Callback Returns Description
    createVaultSetupToken Setup token (string) The merchant's server must receive this callback. To get a setup token, see Create a setup token for cards from the merchant server. The SDK then saves the payment method and updates the setup token with payment method details.

    3D secure

    Callback Returns Description
    createVaultSetupToken Setup token (string) The merchant's server must receive this callback. Send either "SCA_ALWAYS" or "SCA_WHEN_REQUIRED" in verification_method with this request's body. To get a setup token, see Create a setup token for cards from the merchant server. The SDK then saves the payment method and updates the setup token with payment method details.

    Front-end sample

    1. No verification
    2. 3D secure
    1const cardFields = paypal.CardFields({
    2 createVaultSetupToken: () => {
    3 // The merchant calls their server API to generate a vaultSetupToken
    4 // and return it here as a string
    5 const result = awaitfetch("example.com/create/setup/token")
    6 return result.token
    7 }
    8 onApprove: ({
    9 vaultSetupToken
    10 }) => {
    11 // Send the vaultSetupToken to the merchant server to use later.
    12 }
    13})

    Back-end sample

    Make this request from your server.

    Platform

    This setup token is generated with an empty card in the payment_source object. PayPal hosted fields use this token to securely update the setup token with payment details.

      1curl - v - k - X POST https: //api-m.sandbox.paypal.com/v3/vault/setup-tokens \
      2 -H "Content-Type: application/json"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-Id: REQUEST-ID"\ - d '{
      3"payment_source": {
      4 "card": {
      5 "name": "Firstname Lastname",
      6 "billing_address": {
      7 "address_line_1": "123 Main St.",
      8 "address_line_2": "Unit B",
      9 "admin_area_2": "San Jose",
      10 "admin_area_1": "CA",
      11 "postal_code": "12345",
      12 "country_code": "US"
      13 },
      14 "experience_context": {
      15 "brand_name": "EXAMPLE INC",
      16 "locale": "en-US",
      17 "return_url": "https://example.com/returnUrl",
      18 "cancel_url": "https://example.com/cancelUrl"
      19 }
      20 }
      21}
      22}
      23'

      Modify the code

      1. Change ACCESS-TOKEN to your sandbox app's access token.
      2. Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
      3. Change BN-CODE to your PayPal Attribution ID to receive revenue attribution.
      4. Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.
      5. In the createVaultSetupToken, call the endpoint on your server to create a setup token with the Payment Method Tokens API. createVaultSetupToken returns the setup token as a string.

      Merchant

      This setup token is generated with an empty payment_source. PayPal hosted fields use this token to securely update the setup token with payment details.

        1curl - v - k - X POST https: //api-m.sandbox.paypal.com/v3/vault/setup-tokens \
        2 -H "Content-Type: application/json"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-Id: REQUEST-ID"\ - d '{
        3"payment_source": {
        4 "card": {
        5 "name": "Firstname Lastname",
        6 "billing_address": {
        7 "address_line_1": "123 Main St.",
        8 "address_line_2": "Unit B",
        9 "admin_area_2": "Anytown",
        10 "admin_area_1": "CA",
        11 "postal_code": "12345",
        12 "country_code": "US"
        13 },
        14 "experience_context": {
        15 "brand_name": "EXAMPLE INC",
        16 "locale": "en-US",
        17 "return_url": "https://example.com/returnUrl",
        18 "cancel_url": "https://example.com/cancelUrl"
        19 }
        20 }
        21}
        22}
        23'

        Modify the code

        1. Change ACCESS-TOKEN to your sandbox app's access token.
        2. Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
        3. Change BN-CODE to your PayPal Attribution ID to receive revenue attribution. To find your BN code, see Code and Credential Reference.
        4. Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.
        5. In the createVaultSetupToken callback, call an endpoint on your server to create a setup token with the Payment Method Tokens API. createVaultSetupToken returns the setup token as a string.
        4

        Initialize card fields to save data

        After the SDK has a setup token, it renders card fields for the payer to submit card details. The SDK then returns the vaultSetupToken to the merchant through the onApprove callback.

        When you complete this step, CardFields are ready to save card details for later use.

        Supported callback

        No verification

        Callback Returns Description
        onApprove { vaultSetupToken: string } The merchant gets the updated vaultSetupToken when the payment method is saved. The merchant must store the vaultSetupToken token in their system.

        3D secure

        Callback Returns Description
        onApprove { vaultSetupToken: string, liabilityShift: string } This callback provides the updated vaultSetupToken and liabilityShift when the payment method is saved. The merchant stores the vaultSetupToken token in their system.

        Front-end sample

        1. No verification
        2. 3D secure
        1const cardFields = paypal.CardFields({
        2 createVaultSetupToken: () => {
        3 // The merchant calls their server API to generate a vaultSetupToken
        4 // and return it here as a string
        5 const result = awaitfetch("merchant.com/create/setup/token")
        6 return result.token
        7 }
        8 onApprove: ({
        9 vaultSetupToken
        10 }) => {
        11 // Send the vaultSetupToken to the merchant server
        12 // for the server to generate a payment token
        13 returnfetch("example.com/create/payment/token", {
        14 body: JSON.stringify({
        15 vaultSetupToken
        16 })
        17 })
        18 },
        19})

        Back-end sample

        Make this request from your server.

        Platform

          1curl - v - k - X POST https: //api-m.sandbox.paypal.com/v3/vault/payment-tokens \
          2 -H "Content-Type: application/json"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-Id: REQUEST-ID"\ - d '{
          3"payment_source": {
          4 "token": {
          5 "id": "VAULT-SETUP-TOKEN",
          6 "type": "SETUP_TOKEN"
          7 }
          8}
          9}
          10'

          Modify the code

          1. Pass the vaultSetupToken returned by onApprove to your server.
          2. Change ACCESS-TOKEN to your sandbox app's access token.
          3. Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
          4. Change BN-CODE to your PayPal Attribution ID to receive revenue attribution. To find your BN code, see Code and Credential Reference.
          5. Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.
          6. Change VAULT-SETUP-TOKEN to the value passed from the client.
          7. Save the resulting payment token returned from the API to use in future transactions.

          Merchant

            1curl - v - k - X POST https: //api-m.sandbox.paypal.com/v3/vault/payment-tokens \
            2 -H "Content-Type: application/json"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Request-Id: REQUEST-ID"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-ID: REQUEST-ID"\ - d '{
            3"payment_source": {
            4 "token": {
            5 "id": "VAULT-SETUP-TOKEN",
            6 "type": "SETUP_TOKEN"
            7 }
            8}
            9}
            10'

            Modify the code

            1. Pass the vaultSetupToken returned by onApprove to your server.
            2. Change ACCESS-TOKEN to your sandbox app's access token.
            3. Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
            4. Change BN-CODE to your PayPal Attribution ID to receive revenue attribution. To find your BN code, see Code and Credential Reference.
            5. Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.
            6. Change VAULT-SETUP-TOKEN to the value passed from the client.
            7. Save the resulting payment token returned from the API to use in future transactions.

            Avoid validation errors

            CardFields can't be configured with both the createOrder callback and the createVaultSetupToken callback. When saving cards, only pass createVaultSetupToken.

              1// Throws a validation error: can't call both 'createVaultSetupToken' and 'createOrder'
              2paypal.CardFields({
              3 createVaultSetupToken: () => {...},
              4 createOrder: () => {...}
              5})
              5

              Show error page

              If an error prevents checkout, alert the payer that an error has occurred using the onError callback.

                1paypal.CardFields({
                2 onError(err) {
                3 console.error("Something went wrong:", err)
                4 }
                5 })

                Supported callback

                Callback Returns Description
                onError { vaultSetupToken: string } The merchant gets the updated vaultSetupToken when the payment method is saved. The merchant must store the&nbsp;vaultSetupToken token in their system.
                6

                Show saved payment methods to returning payers

                When a payer returns to your site, you can show the payer's saved payment methods with the Payment Method Tokens API.

                List all saved payment methods

                Make the server-side list all payment tokens API call to retrieve payment methods saved to a payer's PayPal-generated customer ID. Based on this list, you can show all saved payment methods to a payer to select during checkout.

                Sample request: List all saved payment methods

                Platform

                  1curl - L - X GET https: //api-m.sandbox.paypal.com/v3/vault/payment-tokens?customer_id=CUSTOMER-ID \
                  2 -H "Content-Type: application/json"\ - H "Accept-Language: en_US"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-Id: REQUEST-ID"\ - d '{}'

                  Modify the code

                  • Change CUSTOMER-ID to a PayPal-generated customer ID.
                  • Change ACCESS-TOKEN to your sandbox app's access token.
                  • Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
                  • Change BN-CODE to your PayPal Attribution ID to receive revenue attribution. To find your BN code, see Code and Credential Reference.
                  • Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.

                  Merchant

                    1curl - L - X GET https: //api-m.sandbox.paypal.com/v3/vault/payment-tokens?customer_id=CUSTOMER-ID \
                    2 -H "Content-Type: application/json"\ - H "Accept-Language: en_US"\ - H "Authorization: Bearer ACCESS-TOKEN"\ - H "PayPal-Auth-Assertion: PAYPAL-AUTH-ASSERTION"\ - H "PayPal-Partner-Attribution-Id: BN-CODE"\ - H "PayPal-Request-Id: REQUEST-ID"\ - d '{}'

                    Modify the code

                    • Change CUSTOMER-ID to a PayPal-generated customer ID.
                    • Change ACCESS-TOKEN to your sandbox app's access token.
                    • Change PAYPAL-AUTH-ASSERTION to your PayPal-Auth-Assertion token.
                    • Change BN-CODE to your PayPal Attribution ID to receive revenue attribution. To find your BN code, see Code and Credential Reference.
                    • Change REQUEST-ID to a set of unique alphanumeric characters such as a time stamp.

                    Show saved card to payer

                    Display the saved card to the payer and use the Orders API to make another transaction. Use the vault ID the payer selects as an input to the Orders API to capture the payment.

                    Use supported CSS properties to style the card fields. We recommend showing the card brand and last 4 digits.

                    Visa,ending,in,1234

                    7

                    Integrate back end

                    The following sample shows a complete back-end integration to save cards for purchase later:

                    1. Platform
                    2. Merchant
                    1import "dotenv/config";
                    2importexpressfrom "express";
                    3const {
                    4 PORT = 8888
                    5} = process.env;
                    6const app = express();
                    7app.set("view engine", "ejs");
                    8app.use(express.static("public"));
                    9// Create setup token
                    10app.post("/api/vault/token", async (req, res) => {
                    11 try {
                    12 // Use your access token to securely generate a setup token
                    13 // with an empty payment_source
                    14 const vaultResponse = awaitfetch("https://api-m.sandbox.paypal.com/v3/vault/setup-tokens", {
                    15 method: "POST",
                    16 body: JSON.stringify({
                    17 payment_source: {}
                    18 }),
                    19 headers: {
                    20 "Authorization": "Bearer ${ACCESS-TOKEN}",
                    21 "PayPal-Request-Id": Date.now(),
                    22 "PayPal-Auth-Assertion": "PAYPAL-AUTH-ASSERTION",
                    23 "PayPal-Partner-Attribution-Id": "BN-CODE"
                    24 }
                    25 })
                    26 // Return the reponse to the client
                    27 res.json(vaultResponse);
                    28 } catch (err) {
                    29 res.status(500).send(err.message);
                    30 }
                    31})
                    32// Create payment token from a setup token
                    33app.post("/api/vault/:setupToken", async (req, res) => {
                    34 const {
                    35 setupToken
                    36 } = req.params;
                    37 try {
                    38 const paymentTokenResult = awaitfetch("https://api-m.sandbox.paypal.com/v3/vault/payment-tokens", {
                    39 method: "POST",
                    40 body: {
                    41 payment_source: {
                    42 token: {
                    43 id: setupToken,
                    44 type: "SETUP_TOKEN"
                    45 }
                    46 }
                    47 },
                    48 headers: {
                    49 "Authorization": "Bearer ${ACCESS-TOKEN}",
                    50 "PayPal-Request-Id": Date.now(),
                    51 "PayPal-Auth-Assertion": "PAYPAL-AUTH-ASSERTION",
                    52 "PayPal-Partner-Attribution-Id": "BN-CODE"
                    53 }
                    54 })
                    55 const paymentMethodToken = paymentTokenResult.id
                    56 const customerId = paymentTokenResult.customer.id
                    57 awaitsave(paymentMethodToken, customerId)
                    58 res.json(captureData);
                    59 } catch (err) {
                    60 res.status(500).send(err.message);
                    61 }
                    62})
                    63constsave = asyncfunction(paymentMethodToken, customerId) {
                    64 // Specify where to save the payment method token
                    65}
                    66app.listen(PORT, () => {
                    67 console.log('Server listening at http://localhost:${PORT}/');
                    68})
                    8

                    Integrate front end

                    The following sample shows how a full script to save cards might appear in HTML:

                      1<!DOCTYPE html>
                      2<html>
                      3<head>
                      4 <!-- Add meta tags for mobile and IE -->
                      5 <meta charset="utf-8" />
                      6</head>
                      7<body>
                      8 <!-- Include the PayPal JavaScript SDK -->
                      9 <script src="https://www.paypal.com/sdk/js?components=card-fields&client-id=YOUR-CLIENT-ID&currency=USD&intent=capture&merchant-id=YOUR-MERCHANT-ID"></script>
                      10 <div align="center"> or </div>
                      11 <!-- Advanced credit and debit card payments form -->
                      12 <div class='card_container'>
                      13 <div id='card-number'></div>
                      14 <div id='expiration-date'></div>
                      15 <div id='cvv'></div>
                      16 <div id='card-holder-name'></div>
                      17 <label>
                      18 <input type='checkbox' id='vault' name='vault' /> Vault
                      19 </label>
                      20 <br><br>
                      21 <button value='submit' id='submit' class='btn'>Pay</button>
                      22 </div>
                      23 <!-- Implementation -->
                      24 <script>
                      25 const cardFields = paypal.CardFields({
                      26 createVaultSetupToken: async () => {
                      27 // The merchant calls their server API to generate a setup token
                      28 // and return it here as a string
                      29 const result = await fetch("https://example.com/api/vault/token", {
                      30 method: "POST"
                      31 });
                      32 const { id } = await result.json();
                      33 return id;
                      34 },
                      35 onApprove: async (data) => {
                      36 return fetch(`https://example.com/api/vault/${data.vaultSetupToken}`, {
                      37 method: "POST"
                      38 });
                      39 },
                      40 onError: (error) => console.error('Something went wrong:', error)
                      41 })
                      42 // Check eligibility and display advanced credit and debit card payments
                      43 if (cardFields.isEligible()) {
                      44 cardFields.NameField().render("#card-holder-name");
                      45 cardFields.NumberField().render("#card-number");
                      46 cardFields.ExpiryField().render("#expiration-date");
                      47 cardFields.CVVField().render("#cvv");
                      48 } else {
                      49 // Handle the workflow when credit and debit cards are not available
                      50 }
                      51 const submitButton = document.getElementById("submit"); submitButton.addEventListener("click", () => {
                      52 cardFields
                      53 .submit()
                      54 .then(() => {
                      55 console.log("submit was successful");
                      56 })
                      57 .catch((error) => {
                      58 console.error("submit erred:", error);
                      59 });
                      60 });
                      61 </script>
                      62</body>
                      63</html>
                      9

                      Test saving cards

                      Use the following card numbers to test transactions in the sandbox:

                      See test card numbers and types
                      Test number Card type
                      371449635398431 American Express
                      376680816376961 American Express
                      36259600000004 Diners Club
                      6304000000000000 Maestro
                      5063516945005047 Maestro
                      2223000048400011 Mastercard
                      4005519200000004 Visa
                      4012000033330026 Visa
                      4012000077777777 Visa
                      4012888888881881 Visa
                      4217651111111119 Visa
                      4500600000000061 Visa
                      4772129056533503 Visa
                      4915805038587737 Visa

                      Test your integration to see if it saves credit and debit cards as expected. Any errors that occur appear in the onError callback provided to the CardFields component.

                      1. Render the card fields.
                      2. Create a save button in your UI.
                      3. When the save button is selected:
                        1. Create a setup token.
                        2. Update the setup token with card details.
                      4. On your server, use a server-side call to swap your setup token for a payment token from the Payment Method Tokens API.
                        1. For a first-time payer, save the PayPal-generated customer.id.
                        2. For a returning payer, use the PayPal-generated customer.id to swap the setup-token for a payment-token.
                      5. Save the payment-token for future use.
                      6. Show saved payment methods:
                        1. Make a server-side call to the list all payment tokens endpoint. Include the PayPal-generated customer.id.
                        2. Style the card fields.



                      Optional: Show saved payment methods

                      We recommend creating a page on your site where payers can see their saved payment methods as in the following example:

                      A,website,showing,a,payment,methods,page.,The,page,shows,the,payer,saved,a,PayPal,Wallet,and,a,credit,card.,The,card,option,is,highlighted.

                      Next step

                      Go live with your integration.

                      If you accept cookies, we’ll use them to improve and customize your experience and enable our partners to show you personalized PayPal ads when you visit other sites. Manage cookies and learn more