> ## Documentation Index
> Fetch the complete documentation index at: https://whatsapp-docs.kap.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Payment links

# Payment links

Updated: Nov 14, 2025

Payments API also enables businesses to collect payments from their customers via WhatsApp using Payment Links.

When using this integration, WhatsApp only facilitates the communication between merchants and buyers. Merchants are responsible for integrating with a PSP from which they can generate Payment Links, and confirm their payment.

## Before You Start

Familiarize yourself with the [Orders API](https://developers.facebook.com/documentation/business-messaging/whatsapp/payments/payments-br/orders). Orders are the entrypoint for collecting payments in WhatsApp.
You will need an existing integration with a PSP to generate Payment Links and do automatic reconciliation when a payment is made.
You must update the order status as soon as a payment is made.

## Integration steps

The following sequence diagram shows the typical integration with Payment Links.

![Image](https://scontent-lax3-1.xx.fbcdn.net/v/t39.2365-6/560047558_1339318174593500_8182680878959019679_n.jpg?_nc_cat=104\&ccb=1-7&_nc_sid=e280be&_nc_ohc=ZT1WBVrkz0EQ7kNvwG4BTCb&_nc_oc=AdlDLMXb9QWr2z-pnkn8HPG9e9Tk3W_8_HsazysXt3qbyClu1pAK8RjGeLSRl97wYv4&_nc_zt=14&_nc_ht=scontent-lax3-1.xx&_nc_gid=Siw8LyUiUwAkI8nv6WQERw\&oh=00_AfmPfUoJgRzgsqGIsNY6cAc7mi_SMctwy_pfMdkZtlOw3A\&oe=69551F72)

### 1. Send an order details message

Follow the full integration guide in the [Orders API page](https://developers.facebook.com/documentation/business-messaging/whatsapp/payments/payments-br/orders).

If Payment Link payment is available on this order, you will need to provide a `payment_link` to the `payment_settings` attribute.

#### Parameters object

| Field Name         | Optional? | Type                                                                                                                                                          | Description                                    |
| ------------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
| `payment_settings` | Optional  | [Payment Settings Object](https://developers.facebook.com/documentation/business-messaging/whatsapp/payments/payments-br/payment-links#paymentsettingsobject) | List of payment related configuration objects. |

#### Payment settings

| Field Name     | Optional? | Type                                                                                                                                                  | Description                                                                                    |
| -------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| `type`         | Required  | String                                                                                                                                                | Must be `payment_link`.                                                                        |
| `payment_link` | Required  | [Payment Link Object](https://developers.facebook.com/documentation/business-messaging/whatsapp/payments/payments-br/payment-links#paymentlinkobject) | Payment Link object that will be used to render the option to buyers during the checkout flow. |

#### Payment link object

| **Field Name** | **Optional?** | **Type** | **Description**                                                                                                |
| -------------- | ------------- | -------- | -------------------------------------------------------------------------------------------------------------- |
| `uri`          | Required      | String   | The Payment Link’s uri which will be opened in the web browser, when user taps on the Payment Link CTA button. |

#### Payload example

```
POST: /v1/messages
\{
 "recipient_type": "individual",
 "to": "[recipient-wa-id]",
 "type": "interactive",
 "interactive": {
   "type": "order_details",
   "body": {
     "text": "Your message content"
   },
   "action": {
     "name": "review_and_pay",
     "parameters": {
       "reference_id": "unique-reference-id",
       "type": "digital-goods",
       "payment_type": "br",
       "payment_settings": [\
         {\
           "type": "payment_link",\
           "payment_link": {\
             "uri": "https://my-payment-link-url",\
           }\
         }\
       ],
       "currency": "BRL",
       "total_amount": {
         "value": 50000,
         "offset": 100
       },
       "order": {
         "status": "pending",
         "tax": {
           "value": 0,
           "offset": 100,
           "description": "optional text"
           },
         "items": [\
           {\
             "retailer_id": "1234567",\
             "name": "Cake",\
             "amount": {\
               "value": 50000,\
               "offset": 100\
             },\
             "quantity": 1\
           }\
         ],
         "subtotal": {
           "value": 50000,
           "offset": 100
         }
       }
     }
   }
 }
}
```

### 2. Send an order status update

Once the payment is confirmed, you must send an order status update. Follow the integration guide in the [Orders API page](https://developers.facebook.com/documentation/business-messaging/whatsapp/payments/payments-br/orders).

Did you find this page helpful?

![Thumbs up icon](https://static.xx.fbcdn.net/rsrc.php/yR/r/OEXJ0_DJeZv.svg)

![Thumbs down icon](https://static.xx.fbcdn.net/rsrc.php/yb/r/qKPgNVNeatU.svg)

ON THIS PAGE

Before You Start

Integration steps

1\. Send an order details message

Parameters object

Payment settings

Payment link object

Payload example

2\. Send an order status update

***
