Support multiple shipping options

DocsCurrentStandardDirect merchant

Last updated: Feb 28th, 8:49pm

When buyers make changes to their shipping information, they can make 2 main types of updates:

  1. Changes to the merchant-provided shipping options.
  2. Changes to the shipping address.

Know before you code

Required
Standard Checkout

  • This feature modifies an existing standard Checkout integration.
  • The maximum number of items you can put in the shipping options array is 10.
Standard Checkout

Optional
Explore PayPal APIs with Postman

You can use Postman to explore and test PayPal APIs. Learn more in our Postman guide.

1

Shipping options changes

To offer your buyers the flexibility to choose their preferred delivery method, you can integrate shipping options. This can include in-store pickup, free shipping, and expedited shipping. Once a buyer has submitted their payment, you can verify their selected shipping option and ship accordingly.


Add shipping options

To provide shipping options to the buyer, complete the following steps:

  1. Use the createOrder callback to make a fetch call to your server with information to uniquely identify the items being ordered. For example, you can pass an array of items containing the SKUs and quantities to represent the products the user has placed in their shopping cart on your ecommerce website.
  2. In your back-end code, use the item SKUs and quantities to calculate the item total.
  3. In your back-end code, define a list of shipping options to present to the buyer.
  4. In your back-end code, use the above information to define an order payload and use that to create an order with the Orders v2 API.
  1. Front end (HTML)
  2. Back end (Node.js)
1<html>
2 <head>
3 <meta name="viewport" content="width=device-width, initial-scale=1">
4 </head>
5 <body>
6 <!-- Replace "test" with your own sandbox Business account app client ID -->
7 <script src="https://www.paypal.com/sdk/js?client-id=test&currency=USD"></script>
8 <!-- Set up a container element for the button -->
9 <div id="paypal-button-container"></div>
10 <script>
11 paypal.Buttons({
12 createOrder() {
13 return fetch("/my-server/create-paypal-order", {
14 method: "POST",
15 headers: {
16 "Content-Type": "application/json",
17 },
18 body: JSON.stringify({
19 cart: [
20 {
21 sku: "YOUR_PRODUCT_STOCK_KEEPING_UNIT",
22 quantity: "YOUR_PRODUCT_QUANTITY",
23 },
24 ]
25 })
26 })
27 .then((response) => response.json())
28 .then((order) => order.id);
29 }
30 }).render('#paypal-button-container');
31 </script>
32 </body>
33</html>


Values passed to shipping options array on the backend

  • id: A unique identifier for the shipping option.
  • label: The option presented to the payer in the dropdown menu.
  • type: An enum, " SHIPPING" or "PICKUP" to differentiate the type of shipping.
  • selected: A boolean to determine which option is selected by default.
  • amount: An object that contains the price of the shipping option.
  • amount.value: A string denoting the price, formatted as X.XX
  • amount.currency_code: The currency code to use, which reflects the currency code in the purchase_units.amount object.

The order amount will automatically be updated based on the options chosen by the buyers, and you can use the onShippingOptionsChange() callback to update your own database with the new amount information.

    1paypal.Buttons({
    2 onShippingOptionsChange(data) {
    3 // data.selectedShippingOption contains the selected shipping option
    4 console.log("SELECTED_OPTION", data.selectedShippingOption);
    5 }
    6});
    2

    Shipping address change

    When the shipping address changes, it may affect the shipping cost. In such a scenario, pass the shipping callback in the paypal.Buttons function.

    If you have defined shipping.address in your order payload, the shipping callback onShippingAddressChange will be triggered when a different address is selected.

    You can access the selected shipping address in the data parameter passed as follows:

      1paypal.Buttons({
      2 onShippingAddressChange(data) {
      3 // data.shippingAddress contains the selected shipping address
      4 console.log("SHIPPING_ADDRESS", data.shippingAddress);
      5 },
      6});

      This example shows how to change the total price based on shipping address changes. The client-side code snippet sends data.shippingAddress to your server and the server-side code snippet looks up the new shippingAddress and changes the amount of the order.

      1. Front end (HTML)
      2. Back end (Node.js)
      1<html>
      2 <head>
      3 <meta name="viewport" content="width=device-width, initial-scale=1">
      4 </head>
      5 <body>
      6 <!-- Replace "test" with your own sandbox Business account app client ID -->
      7 <script src="https://www.paypal.com/sdk/js?client-id=test&currency=USD"></script>
      8 <!-- Set up a container element for the button -->
      9 <div id="paypal-button-container"></div>
      10 <script>
      11 paypal.Buttons({
      12 onShippingAddressChange(data) {
      13 return fetch("/my-server/patch-paypal-order", {
      14 method: "PATCH",
      15 headers: {
      16 "Content-Type": "application/json",
      17 },
      18 body: JSON.stringify({
      19 orderID: data.orderID,
      20 shippingAddress: data.shippingAddress
      21 })
      22 })
      23 },
      24 }).render('#paypal-button-container');
      25 </script>
      26 </body>
      27</html>