For businesses working with Razorpay or PayU payment gateways, we have deeper integration with these PGs. Please refer to Payment Gateway Integration Guide
Your business can enable customers to pay for their orders using all the UPI Apps installed on their devices via WhatsApp. Businesses can send customers invoice(order_details
) messages, then get notified about payment status updates via webhook notifications from Payment Gateway.
Currently, customers browse business catalogs, add products to cart, and send orders in with our set of commerce messaging solutions, which includesSingle Product Message, Multi Product Message, and Product Detail Page.
With the WhatsApp Payments API, businesses can send customers a bill so the customer can complete their order with all the UPI Apps.
The business must send an order_details
message for the consumer to initiate payment. This type of message is a new type of interactive message, which always contains the same 4 main components: header, body, footer, and action. Inside the action component, the business includes all the information needed for the customer to complete their payment.
Each order_details
message contains a unique reference_id
provided by the business, and that unique number is used throughout the flow to track the order. This reference_id
is fetched from UPI intent link(tr value from the UPI payment intent) generated for a business order from Payment Gateway.
Once the message is sent, the business waits for a payment or transaction status updates directly from Payment Gateway. Upon receiving payment signal for an order, Business should relay this payment signal to consumer through interactive order status(order_status
) message.
Updating user about the payment signal is important as this message updates the order details message and order details view for the consumer reflecting the order confirmation from merchant. This is shown with an example in subsequent sections.
In the WhatsApp customer app, the purchase flow has the following steps:
To receive UPI payments on WhatsApp merchants have to set up their VPA on WhatsApp Business Manager using the direct payment methods option.
Each configuration must have a unique name, merchant categorization code (mcc), purpose code, and VPA handles as shown below. A business can have multiple payment configurations, but for each order merchant must specify a specific configuration to be used for payment. See payment_configuration
field in order_details
message.
[ { "name": "unique name 1", "merchantVpa": "handle_1@paytm", "merchantMcc": "merchant categorization code", "merchantPurposeCode": "purpose code" }, { "name": "unique name 2", "merchantVpa": "handle_2@paytm", "merchantMcc": "merchant categorization code", "merchantPurposeCode": "purpose code" }, ]
name
for each payment type must be unique. name
will be used to reference the specific configurations for each payment type. If WA is unable to find a payment configuration name, the user will not be able to make the payment upon receiving the order_details
message. mcc
refers to a merchant categorization code for the items in the order. upi_pc
refers to the purpose of the transaction. Some sample codes are below:
Code | Title |
---|---|
00 | Default |
01 | SEMI |
02 | AMC |
03 | Travel |
04 | Hospitality |
05 | Hospital |
06 | Telecom |
07 | Insurance |
08 | Education |
09 | Gifting |
10 | Others |
If merchant/partner is not sure of the MCC and purpose code, then they may contact Payment Gateway to get this information as Payment Gateway sets up these values based on the type of business while generating business VPAs.
Self-service Payment Configuration allows you to add multiple payment configurations to your WhatsApp Manager profile. Each payment configuration will have its own UPI handle(VPA), MCC, and purpose code (for physical goods) so that merchants can accept payments for different categories with different UPI accounts. After setup, merchant can send invoice(order_details
) messages to users with the corresponding payment configuration to collect payments.
Manage Payment Methods feature is in Beta, so please contact Business Engineering team to allow merchants/partners access the page in WhatsApp Business Manager portal.
You can create a payment configuration for a WhatsApp Business Account using the 'Payment configurations' page and under 'India' in WhatsApp Business Manager.
After linking your payment configuration, you must integrate with the Payments APIs below. This will allow you to send an order_details
message to customers with the payment configuration to receive payments.
Note: Make sure no new order messages requesting payment from consumer are sent with the payment config your are trying to remove before you perform the unlink action.
The steps outlined below assume that the business is about to send order details message to consumer client.
The following sequence diagram demonstrates the typical integration flow for WA Payments API:
Once the consumer has expressed their interest to purchase an item using UPI payment method. Merchant needs to call payment gateway to create a UPI intent, the following is the sample UPI intent link:
upi://pay?pa=cfsukoonaa@yesbank&pn=Sukoon&tr=877376394& am=10.00&cu=INR&mode=00&purpose=00&mc=5399&tn=877376394
Merchant needs to parse the tr
value from the above URI and use this as the reference id in invoice(order_details
) interactive message.
To send an order_details
message, businesses must assemble an interactive object of type order_details
with the following components:
Object | Description |
---|---|
object | Required. Must be "order_details". |
object | Optional. Header content displayed on top of a message. If a header is not provided, the API uses an image of the first available product as the header |
object | Required. An object with the body of the message. The object contains the following field:
|
object | Optional. An object with the footer of the message. The object contains the following fields:
|
object | Required. An action object you want the user to perform after reading the message. This action object contains the following fields:
|
Object | Description |
---|---|
string | Required. Unique identifier for the order or invoice provided by the business. This cannot be an empty string and can only contain English letters, numbers, underscores, dashes, or dots, and should not exceed 35 characters. The |
object | Required. The type of goods being paid for in this order. Current supported options are |
array | Required for shipped physical-goods. An array of beneficiaries for this order. A beneficiary is an intended recipient for shipping the physical goods in the order. It contains the following fields: Beneficiary information isn't shown to users but is needed for legal and compliance reasons.
|
| Required. Must be "upi". |
| Required. The name of the pre-configured payment configuration to use for this order and must not exceed 60 characters. |
| Required. The currency for this order. Currently the only supported value is |
object | Required. The
|
object | Required. See order object for more information. |
Object | Description |
---|---|
string | Required. Only supported value in the In an |
string | Optional. Only supported value is |
object | Required. An object with the list of items for this order, containing the following fields:
Using this image field will limit the items array to a maximum of 10 items and this cannot be used with
|
object | Required. The value must be equal to sum of The following fields are part of the
|
object | Required. The tax information for this order which contains the following fields:
|
object | Optional. The shipping cost of the order. The object contains the following fields:
|
object | Optional. The discount for the order. The object contains the following fields:
|
object | Optional. Unique identifier of the Facebook catalog being used by the business. |
object | Optional. Expiration for that order. Business must define the following fields inside this object:
|
Object | Description |
---|---|
| Required.
A link to the image that will be shown to the user. Must be an |
By the end, the interactive object should look something like this for a catalog-based integration:
{ "interactive": { "type": "order_details", "header": { "type": "image", "image": { "link": "http(s)://the-url", "provider": { "name": "provider-name" } } }, "body": { "text": "your-text-body-content" }, "footer": { "text": "your-text-footer-content" }, "action": { "name": "review_and_pay", "parameters": { "reference_id": "reference-id-value", "type": "digital-goods", "payment_type": "upi", "payment_configuration": "unique-payment-config-id", "currency": "INR", "total_amount": { "value": 21000, "offset": 100 }, "order": { "status": "pending", "catalog_id": "the-catalog_id", "expiration": { "timestamp": "utc_timestamp_in_seconds", "description": "cancellation-explanation" }, "items": [ { "retailer_id": "1234567", "name": "Product name, for example bread", "amount": { "value": 10000, "offset": 100 }, "quantity": 1, "sale_amount": { "value": 100, "offset": 100 } } ], "subtotal": { "value": 20000, "offset": 100 }, "tax": { "value": 1000, "offset": 100, "description": "optional_text" }, "shipping": { "value": 1000, "offset": 100, "description": "optional_text" }, "discount": { "value": 1000, "offset": 100, "description": "optional_text", "discount_program_name": "optional_text" } } } } } }
For a non-catalog based integration i.e. when catalog-id is not present, an example payload looks as follows:
{ "interactive": { "type": "order_details", "header": { "type": "image", "image": { "id": "your-media-id" } }, "body": { "text": "your-text-body-content" }, "footer": { "text": "your-text-footer-content" }, "action": { "name": "review_and_pay", "parameters": { "reference_id": "reference-id-value", "type": "digital-goods", "payment_type": "upi", "payment_configuration": "unique-payment-config-id", "currency": "INR", "total_amount": { "value": 21000, "offset": 100 }, "order": { "status": "pending", "expiration": { "timestamp": "utc_timestamp_in_seconds", "description": "cancellation-explanation" }, "items": [ { "name": "Product name, for example bread", "amount": { "value": 10000, "offset": 100 }, "quantity": 1, "sale_amount": { "value": 100, "offset": 100 }, "country_of_origin": "country-of-origin", "importer_name": "name-of-importer-business", "importer_address": { "address_line1": "B8/733 nand nagri", "address_line2": "police station", "city": "East Delhi", "zone_code": "DL", "postal_code": "110093", "country_code": "IN" } }, { "name": "Product name, for example bread", "amount": { "value": 10000, "offset": 100 }, "quantity": 1, "sale_amount": { "value": 100, "offset": 100 }, "country_of_origin": "country-of-origin", "importer_name": "name-of-importer-business", "importer_address": { "address_line1": "B8/733 nand nagri", "address_line2": "police station", "city": "East Delhi", "zone_code": "DL", "postal_code": "110093", "country_code": "IN" } } ], "subtotal": { "value": 20000, "offset": 100 }, "tax": { "value": 1000, "offset": 100, "description": "optional_text" }, "shipping": { "value": 1000, "offset": 100, "description": "optional_text" }, "discount": { "value": 1000, "offset": 100, "description": "optional_text", "discount_program_name": "optional_text" } } } } } }
Once the interactive object is complete, append the other parameters that make a message: recipient_type
, to
, and type
. Remember to set the type
to interactive
.
{ "messaging_product": "whatsapp", "recipient_type": "individual", "to": "PHONE_NUMBER", "type": "interactive", "interactive": { // interactive object here } }
These are parameters common to all message types.
Make a POST call to the /[PHONE_NUMBER_ID]/messages
endpoint with the JSON
object you have assembled. If your message is sent successfully, you get the following response:
{ "messaging_product": "whatsapp", "contacts": [ { "input": "[PHONE_NUMBER_ID]", "wa_id": "[PHONE-NUMBER_ID]" } ], "messages": [ { "id": "wamid.HBgLMTY1MDUwNzY1MjAVAgARGBI5QTNDQTVCM0Q0Q0Q2RTY3RTcA" } ] }
For all errors that can be returned and guidance on how to handle them, see WhatsApp Cloud API, Error Codes.
Consumers can pay using WhatsApp payment method or using any UPI supported app that is installed on the device.
Businesses receive updates to the invoice via payment gateway webhooks, when the status of the user-initiated transaction changes. The unique identifier tr(reference-id passed in order_details
message) can be used to map the transaction to the consumer invoice or interactive order details message.
Please refer to our PG integration guide for the exact payment sigals. [PayU], [Cashfree], [RazorPay] and Billdesk
Upon receiving transaction signals from payment gateway through webhook, the business must update the order status to keep the user up to date. Currently we support the following order status values:
Value | Description |
---|---|
| User has not successfully paid yet |
| User payment authorized, merchant/partner is fulfilling the order, performing service, etc. |
| A portion of the products in the order have been shipped by the merchant |
| All the products in the order have been shipped by the merchant |
| The order is completed and no further action is expected from the user or the partner/merchant |
| The partner/merchant would like to cancel the |
Typically businesses update the order_status
using either the WhatsApp payment status change notifications or their own internal processes. To update order_status
, the partner sends an order_status
message to the user.
{ "recipient_type": "individual", "to": "whatsapp-id", "type": "interactive", "interactive": { "type": "order_status", "body": { "text": "your-text-body-content" }, "action": { "name": "review_order", "parameters": { "reference_id": "reference-id-value", "order": { "status": "processing | partially_shipped | shipped | completed | canceled", "description": "optional-text" } } } } }
The following table describes the returned values:
Value | Description |
---|---|
| The ID provided by the partner in the |
| The new order |
| Optional text for sharing status related information in |
For all errors that can be returned and guidance on how to handle them, see WhatsApp On-Premises API, Errors.
Merchant should always post this order-status message to consumer after reciving transaction updates for an order. As the order_details message and order details screen experience is tied to to the order status updates.
Businesses should use their bank statements to reconcile the payments using the reference_id
provided in the order_details
messages.
Now merchants can specify upto one
UPI Payment app to showup in checkout flow. Merchant preferred payment app will be shown on top of the list of available UPI apps in - "Choose payment method" screen. To enable this capability we require partners to specify the external app-id in the Order Details or order-invoice message.
Note: This feature is available on consumer apps on and above version: 2.24.21.0
{ "messaging_product": "whatsapp", "interactive": { "action": { "name": "review_and_pay", "parameters": { "preferred_payment_methods": [ { "method": "Application-ID" } ] .... } "order": .. } } } }
UPI Application | Application ID to be passed in Order Details payload |
---|---|
Google Pay | gpay |
PhonePe | phonepe |
PayTm | paytm |
Amazon Pay | amazonpay |
CRED | cred |
Mobikwik | mobikwik |
When the consumer opts to use WhatsApp UPI payment method to pay for an order, upon completion of payment WhatsApp would send the merchant the following webhook signals. For this merchant should first need to onboard on to WhatsApp Payments.
Businesses receive updates via WhatsApp webhooks when the status of the user-initiated transaction changes. A webhook notification for an updated transaction status looks like this:
{ "object": "whatsapp_business_account", "entry": [{ "id": "WHATSAPP-BUSINESS-ACCOUNT-ID", "changes": [{ "value": { "messaging_product": "whatsapp", "metadata": { "display_phone_number": "[PHONE_NUMBER]", "phone_number_id": "[PHONE_NUMBER_ID]" }, "contacts": [{...}], "errors": [{...}], "messages": [{...}], "statuses": [{ "id": "gBGGFlB5YjhvAgnhuF1qIUvCo7A", "recipient_id": "[PHONE_NUMBER]", "type": "payment", "status": "[TRANSACTION_STATUS]", "payment": { "reference_id": "[REFERENCE_ID]" }, "timestamp": "notification_timestamp" }] }, "field": "messages" }] }] }
Transaction status webhook payload constains the following fields within the status object:
Field | Description |
---|---|
string | Phone number of the customer |
string | For transaction status webhooks, |
string | The new transaction status. Can be one of |
object | This contains the following field:
|
string | Timestamp for the notification |
For more information, see Components, Statuses Object.
When a transaction with a customer is successful, the business gets the following:
- A transaction status update with the status as success
as seen in the transaction status table above.
- A payment confirmation message webhook notification
The payment confirmation message webhook is of interactive
and includes the following fields:
Field | Description |
---|---|
string | Unique ID (bank_rrn) of the UPI transaction. |
string | Type of payment interface for processing the transaction. Only "upi" is supported. |
string | The business supplied ID that uniquely identifies the |
object | The total amount for this payment. This object contains the following fields:
|
string | The currency for this payment. Currently the only supported value is "INR" |
string | The new transaction status. Must be "success" for payment confirmation webhook. Note that this status is the status of the specific transaction corresponding to the |
An example payment confirmation webhook looks like this:
{ "object": "whatsapp_business_account", "entry": [{ "id": "WHATSAPP-BUSINESS-ACCOUNT-ID", "changes": [{ "value": { "messaging_product": "whatsapp", "metadata": { "display_phone_number": "PHONE-NUMBER", "phone_number_id": "PHONE-NUMBER-ID" }, "contacts": [{...}], "errors": [{...}], "messages": [{ "from": "sender_wa_id", "group_id": "group_id", "id": "message_id", "timestamp": "message_timestamp", "type": "interactive", "interactive": { "type": "payment", "payment": { "transaction_id": "[UPI_BANK_RRN]", "transaction_type": "upi", "reference_id": "[REF_ID]", "total_amount": { "value": 100, "offset": 100 }, "currency": "INR", "status": "success" } } }], "statuses": [{...}] }, "field": "messages" }] }] }
After receiving the transaction status notification, payment confirmation message, or at any time, the business can look up the status of the payment for an order. To do that, businesses must make a GET call to [PHONE_NUMBER_ID]/payments/{payment_configuration }/{reference_id}
. Businesses should expect a response in the same HTTP session (not in a webhook notification). payment_configuration
and reference_id
must be the same as that provided in the initial order_details
message.
A successful response looks like this:
{ "payments": [{ "reference_id": "reference-id-value", "status": "status-of-payment", "currency": "INR", "total_amount": { "value": 21000, "offset": 100 }, "transactions": [{ "id": "[UPI_BANK_RRN]", "type": "upi", "status": "failed", "created_timestamp": "[CREATED_TIMESTAMP]", "updated_timestamp": "[UPDATED_TIMESTAMP]" }, { "id": "[UPI_BANK_RRN]", "type": "upi", "status": "success", "created_timestamp": "CREATED_TIMESTAMP]", "updated_timestamp": "UPDATED_TIMESATMP]" } ] }] }
A response can return the following values:
Field | Description |
---|---|
string | The ID provided by the partner in the |
string | The payment status. See the payment status table for possible values. Note that this is not the same as transaction status. |
string | The currency for this payment. Currently the only supported value is "INR". |
object | The total amount for this payment. This object contains the following fields:
|
array | The complete list of transactions for this payment. Each transaction object contains the following fields:
|
We support the following payment statuses:
Status | Description |
---|---|
| The partner sent an |
| The user started the payment process and the payment object was created |
| The payment was captured |
| The payment was canceled by the user and no retry is possible |
| The payment attempt failed but the user can retry |
For all errors that can be returned and guidance on how to handle them, see WhatsApp On-Premises API, Errors.
Ensure that order_status
message is send to consumer informing them about updates to an order after receiving transaction updates for an order.
Ensure the merchant is verified and WABA contact is marked with a verified check.
Verify the WABA is mapped to appropriate merchant initiated messaging tier(1k, 10k and 100k per day)
Merchant should list the customer support informatoin in the profile screen incase consumer wants to report any issues.