order_details message. An order_details 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.order_details message contains a unique reference_id provided by the business, and that unique ID is used throughout the flow to track the order.order_details message to the user. When the user taps on Review and Pay, they will see details about the order and total amount to be paid.

order_status message to the consumer informing them about the status of the order. Each message will result in a message bubble (as shown below) that refers to the original order details message and also updates the status displayed on the order details page.order_details message, you can specify the payment configuration to use for a specific checkout. WhatsApp will then generate a checkout flow using the associated payment gateway account.
order_details message to customers with the payment configuration to receive payments.

order_details message, businesses must assemble an interactive object of type order_details with the following components:| Object | Description |
|---|---|
typeobject | Required. Must be “order_details”. |
headerobject | 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 |
bodyobject | Required. An object with the body of the message. The object contains the following field: text string
|
footerobject | Optional. An object with the footer of the message. The object contains the following fields: text string
|
actionobject | Required. An action object you want the user to perform after reading the message. This action object contains the following fields: name string
parameters object
|
| Object | Description |
|---|---|
reference_idstring | Required. Unique identifier for the order or invoice provided by the business. It is case sensitive and cannot be an empty string and can only contain English letters, numbers, underscores, dashes, or dots, and should not exceed 35 characters. The reference_id must be unique for each order_details message for a given business. If there is a need to send multiple order_details messages for the same order, it is recommended to include a sequence number in the reference_id (for example, “BM345A-12”) to ensure reference_id uniqueness. |
typeobject | Required. The type of goods being paid for in this order. Current supported options are digital-goods and physical-goods. |
beneficiariesarray | 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: Note: Beneficiary information isn’t shown to users but is needed for legal and compliance reasons. name string
address_line1 string
address_line2 string
city string
state string
country string
postal_code string
|
currency | Required. The currency for this order. Currently the only supported value is INR. |
total_amountobject | Required. The total_amount object contains the following fields:offset integer
value integer
total_amount.value must be equal to order.subtotal.value + order.tax.value + order.shipping.value - order.discount.value.UPI transactions are limited to ₹5,00,000. For higher amounts, set enabled_payment_options to ["web"]. See Restrict Available Payment Options. |
payment_settingsobject | Required. See Payment Settings object for more information. |
orderobject | Required. See order object for more information. |
| Object | Description |
|---|---|
typestring | Required. Must be set to “payment_gateway” |
payment_gatewayobject | Required. An object that describes payment account information: type string
configuration_name string
When configuration_name is invalid, the customer will be unable to pay for their order. We strongly advise businesses to conduct extensive testing of this setup during the integration phase.billdesk/razorpay/payu/zaakpay object
Please refer Payment Gateway specific UDF object for more information. |
notes, receipt and udf fields in Order Details message and receive this data back in payment signals. Here we will take a look at merchants can pass additional_info for BillDesk, notes and receipt fields for Razorpay, udf for PayU, extra for Zaakpay PGs.| Object | Description |
|---|---|
notesobject | Optional.
The object can be key value pairs with maximum 15 keys and each value limits to 256 characters. |
receiptString | Optional.
Receipt number that corresponds to this order, set for your internal reference. Maximum length of 40 characters supported with minimum length greater than 0 characters. |
udf1-4String | Optional.
User-defined fields (udf) are used to store any information corresponding to a particular order. Each UDF field has a maximum character limit of 255. |
extra1-2String | Optional.
User-defined fields (extra) are used to store any information corresponding to a particular order. Each extra field has a maximum character limit of 180. |
additional_info1-7String | Optional.
User-defined fields (extra) are used to store any information corresponding to a particular order. Each extra field has a maximum character limit of 120. |
| Object | Description |
|---|---|
statusstring | Required. Only supported value in the order_details message is pending.In an order_status message, status can be: pending, captured, or failed. |
type
string | Optional. Only supported value is quick_pay. When this field is passed in we hide the “Review and Pay” button and only show the “Pay Now” button in the order details bubble. |
itemsobject | Required. An object with the list of items for this order, containing the following fields: retailer_id string
name string
image object
Using this image field will limit the items array to a maximum of 10 items and this cannot be used with retailer_id or catalog_id.amount amount object with value and offset -- refer total amount field above
sale_amount amount object
quantity integer
country_of_origin string
importer_name string
importer_adress string
|
subtotalobject | Required. The value must be equal to sum of order.amount.value * order.amount.quantity. Refer to total_amount description for explanation of offset and value fieldsThe following fields are part of the subtotal object:offset integer
value integer
|
taxobject | Required. The tax information for this order which contains the following fields: offset integer
value integer
description string
|
shippingobject | Optional. The shipping cost of the order. The object contains the following fields: offset integer
value integer
description string
|
discountobject | Optional. The discount for the order. The object contains the following fields: offset integer
value integer
description string
discount_program_name string
|
catalog_idobject | Optional. Unique identifier of the Facebook catalog being used by the business. If you do not provide this field, you must provide the following fields inside the items object: country_of_origin, importer_name, and importer_address |
expirationobject | Optional. Expiration for that order. Business must define the following fields inside this object: timestamp string – UTC timestamp in seconds of time when order should expire. Minimum threshold is 300 secondsdescription string – Text explanation for expiration. Max character limit is 120 characters |
| Object | Description |
|---|---|
link
string | Required.
A link to the image that will be shown to the user. Must be an image/jpeg or image/png and 8-bit, RGB or RGBA. Follows same requirements as image in media |
parameters value is a stringified JSON object.{ "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_settings": [ { "type": "payment_gateway", "payment_gateway": { "type": "billdesk", "configuration_name": "payment-config-id", "billdesk": { "additional_info1": "additional_info1-value", "additional_info2": "additional_info2-value", "additional_info3": "additional_info3-value", "additional_info4": "additional_info4-value", "additional_info5": "additional_info5-value", "additional_info6": "additional_info6-value", "additional_info7": "additional_info7-value" } } } ], "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" } } } } } }
parameters value is a stringified JSON object.{ "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_settings": [ { "type": "payment_gateway", "payment_gateway": { "type": "razorpay", "configuration_name": "payment-config-id", "razorpay": { "receipt": "receipt-value", "notes": { "key1": "value1" } } } } ], "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" } } } } } }
parameters value is a stringified JSON object.{ "interactive": { "type": "order_details", "header": { "type": "image", "image": { "link": "your-media-url-link" } }, "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_settings": [ { "type": "payment_gateway", "payment_gateway": { "type": "payu", "configuration_name": "payment-config-id", "payu": { "udf1": "value1", "udf2": "value2", "udf3": "value3", "udf4": "value4" } } } ], "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" } } } } } }
{ "interactive": { "type": "order_details", "header": { "type": "image", "image": { "link": "your-media-url-link" } }, "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_settings": [ { "type": "payment_gateway", "payment_gateway": { "type": "zaakpay", "configuration_name": "payment-config-id", "zaakpay": { "extra1": "value1", "extra2": "value2" } } } ], "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" } } } } } }
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 } }
/[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" } ] }
order_details message similar to the one below (left). When they click on “Review and Pay”, it opens up the order details screen as shown below (middle). Customer can then pay for their order using “Continue” button that opens up a bottom sheet with the payment options (right).


| Object | Description |
|---|---|
idstring | Required. Webhook ID for the notification. |
recipient_id string | Required. WhatsApp ID of the customer. |
typestring | Required. For payment status update webhooks, type is “payment”. |
statusstring | Required. captured/pending: captured - when the payment is successfully completed, pending when the user attempted but yet to receive success transactions signal |
paymentobject | Required. Contains the following field:
reference_id string
extra1-2 string Optional.
The list of refunds for this order. Each refund object contains the following fields:
|
timestampstring | Required. Timestamp for the webhook. |
payment:{ "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]", "amount": { "value": 21000, "offset": 100 }, "transaction": { "id": "[PG-ORDER-ID]", "pg_transaction_id": "[PG-PAYMENT-ID]", "type": "billdesk/razorpay/payu/zaakpay", "status": "success/failed", "created_timestamp": "CREATED_TIMESTAMP", "updated_timestamp": "UPDATED_TIMESTAMP", "method": { "type": "upi/card/netbanking/wallet" }, "error": { "code": "pg-generated-error-code", "reason": "pg-generated-descriptive-reason" } }, "currency": "INR", "receipt": "receipt-value", "notes": { "key1": "value1", "key2": "value2" }, "udf1": "udf1-value", "udf2": "udf2-value", "udf3": "udf3-value", "udf4": "udf4-value", "additional_info1": "additional_info1-value", "additional_info2": "additional_info2-value", "additional_info3": "additional_info3-value", "additional_info4": "additional_info4-value", "additional_info5": "additional_info5-value", "additional_info6": "additional_info6-value", "additional_info7": "additional_info7-value", "refunds": [{ "id": "[REFUND-ID]", "amount": { "value": 100, "offset": 100 }, "speed_processed": "instant/normal", "status": "success", "created_timestamp": "CREATED_TIMESTAMP", "updated_timestamp": "UPDATED_TIMESTAMP" }] }, "timestamp": "notification_timestamp" }] }, "field": "messages" }] }] }
GET <PHONE_NUMBER_ID>/payments/<PAYMENT_CONFIGURATION>/<REFERENCE_ID>
payment_configuration and reference_id are same as that sent in the order_details message.| Field | Description |
|---|---|
reference_idstring | Required. The ID sent by the business in the order_details message |
statusstring | Required. Status of the payment for the order. Can be one of pending or capturedRefer the table below for what these statuses mean. |
currencystring | Required. The currency for this payment. Currently the only supported value is INR. |
amountobject | Required. The amount for this payment. It contains the following fields: offset integer
value integer
|
transactionsarray | Optional. The list of transactions for this payment. This field is only present when at least one payment attempt has been made. If the payment status is pending and no payment attempt has occurred, this field will not be returned. Each transaction object contains the following fields:id string
pg_transaction_id string
type string
status string
At most one transaction can have a success status.created_timestamp integer
updated_timestamp integer
method objectOptional. the payment method information might not be available for failed payments
error objectOptional. the payment error details might not be available for all payments attempts
refunds arrayOptional. The list of refunds for this order. Each refund object contains the following fields:
|
additional_info1-7string | Optional. Supported for only BillDesk PG, this contains string values sent as part of Order Details message. |
receiptstring | Optional. Supported for only Razorpay PG, this contains the receipt-value sent as part of Order Details message. |
notesobject | Optional. Supported for only Razorpay PG, this contains the key-value pairs sent as part of Order Details message. |
udf1-4string | Optional. Supported for only PayU PG, this contains string values sent as part of Order Details message. |
extra1-2string | Optional. Supported for only Zaakpay PG, this contains string values sent as part of Order Details message. |
| Status | Description |
|---|---|
pending | The order has been created but payment has not yet been captured. This status covers two scenarios:
|
captured | The payment was successfully captured. The transactions array will contain an entry with status set to success. |
{ "payments": [{ "reference_id": "reference-id-value", "status": "status-of-payment", "currency": "INR", "amount": { "value": 21000, "offset": 100 }, "transactions": [ { "id": "[PG-ORDER-ID]", "pg_transaction_id": "[PG-TXN-ID]", "type": "billdesk/razorpay/payu/zaakpay", "status": "success/failed", "created_timestamp": "CREATED_TIMESTAMP", "updated_timestamp": "UPDATED_TIMESTAMP", "method": { "type": "upi/card/netbanking/wallet" }, "error": { "code": "pg-generated-error-code", "reason": "pg-generated-descriptive-reason" }, "refunds": [ { "id": "[REFUND-ID]", "amount": { "value": 100, "offset": 100 }, "speed_processed": "instant/normal", "status": "success", "created_timestamp": "CREATED_TIMESTAMP", "updated_timestamp": "UPDATED_TIMESATMP" } ] } ], "receipt": "receipt-value", "notes": { "key1": "value1", "key2": "value2" }, "udf1": "udf1-value", "udf2": "udf2-value", "udf3": "udf3-value", "udf4": "udf4-value", "additional_info1": "additional_info1-value", "additional_info2": "additional_info2-value", "additional_info3": "additional_info3-value", "additional_info4": "additional_info4-value", "additional_info5": "additional_info5-value", "additional_info6": "additional_info6-value", "additional_info7": "additional_info7-value" }] }
{ "errors": [{ "code": 500, "title": "Generic error", "details": "System error. Please try again." }] }
transactions array is not present.{ "payments": [ { "reference_id": "<your_reference_id>", "status": "pending", "amount": { "offset": 100, "value": 1000 }, "currency": "INR" } ] }
transactions array contains the successful transaction with payment method details.{ "payments": [ { "reference_id": "<your_reference_id>", "status": "captured", "amount": { "offset": 100, "value": 1000 }, "currency": "INR", "transactions": [ { "id": "<order_id>", "pg_transaction_id": "<payment_id>", "type": "razorpay", "status": "success", "created_timestamp": 1772129215, "updated_timestamp": 1772129215, "amount": { "offset": 100, "value": 1000 }, "order_amount": { "offset": 100, "value": 1000 }, "currency": "INR", "method": { "type": "upi" } } ] } ] }
pending (the order is still awaiting successful payment), but the transactions array contains the failed attempt with error details.{ "payments": [ { "reference_id": "<your_reference_id>", "status": "pending", "amount": { "offset": 100, "value": 1000 }, "currency": "INR", "transactions": [ { "id": "<order_id>", "pg_transaction_id": "<payment_id>", "type": "razorpay", "status": "failed", "created_timestamp": 1772129329, "updated_timestamp": 1772129329, "amount": { "offset": 100, "value": 1000 }, "order_amount": { "offset": 100, "value": 1000 }, "currency": "INR", "method": { "type": "upi" }, "error": { "code": "BAD_REQUEST_ERROR", "reason": "incorrect_pin" } } ] } ] }
order_status message instead of text messages since the latest status of an order displayed on the order details page is only based on order_status messages.interactive message of type order_status as shown below.{ "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" } } } } }
order_status interactive message:| Object | Description |
|---|---|
typestring | Required.
Must be “order_status” |
bodyobject | Required. An object with the body of the message. The object contains the following field: text string
|
footerobject | Optional. An object with the footer of the message. The object contains the following field: text string
|
actionobject | Required. An action object you want the user to perform after reading the message. This action object contains the following fields: name string
parameters object
|
parameters object contains the following fields:| Value | Description |
|---|---|
reference_idstring | Required. The ID sent by the business in the order_details message. |
orderobject | Required.
This object contains the following fields: status string
description string
|
order_status message introduces two new errors that are summarized below.| Error Code | Description |
|---|---|
2046 - Invalid status transition | The order status transition is not allowed. |
2047 - Cannot cancel order | Cannot cancel the order since the user has already paid for it. |
order_status update as a separate message in their chat thread, that references their original order_details message as shown below (left). The order details page always displays the latest valid status communicated to the customer using the order_status message as shown below (right).

| Value | Description |
|---|---|
pending | User has not successfully paid yet |
processing | User payment authorized, merchant/partner is fulfilling the order, performing service, etc. |
partially-shipped | A portion of the products in the order have been shipped by the merchant |
shipped | All the products in the order have been shipped by the merchant |
completed | The order is completed and no further action is expected from the user or the partner/merchant |
canceled | The partner/merchant would like to cancel the order_details message for the order/invoice. The status update will fail if there is already a successful or pending payment for this order_details message |
pending, which is sent in order_details message.canceled and completed are terminal status and cannot be updated to any other status.pending can transition to any of the other statuses including processing, shipped, partially-shipped.processing, shipped and partially-shipped are equivalent statuses and can transition between one another or to one of the terminal statuses.
order_status message with an invalid transition, you will receive an error webhook with the error code 2046 and message “New order status was not correctly transitioned.”canceled by sending an order_status message with the status canceled. The customer cannot pay for an order that is canceled. The customer receives an order_status message and order details page is updated to show that the order is canceled and the “Continue” button removed. The optional text shown below “Order canceled” on the order details page can be specified using the description field in the order_status message.order_status message with canceled status, you will receive an error webhook with error code 2047 and message “Could not change order status to ‘canceled’”.reference_id provided in the order_details messages and the id of the transactions returned as part of the payment lookup query./[PHONE_NUMBER_ID]/payments_refund endpoint with the following JSON object:{ "reference_id": "reference-id-value", "speed": "normal", "payment_config_id": "payment-config-id", "amount": { "currency": "INR", "value": "100", "offset": "100" } }
| Field | Description |
|---|---|
reference_idstring | Required. Unique reference ID for the order sent in order_details message. |
speedstring | Optional. Speed by which refund should be processed. Can be one of instant or normal. |
payment_config_idstring | Required. Payment configuration for the order sent in order_details message. |
amountobject | Required. The amount object contains the following fields:offset string
value string
currency string
|
| Field | Description |
|---|---|
idstring | Required. A unique ID representing the initiated refund. |
statusstring | Required. Status of the refund. Can be one of pending, failed or completed |
speed_processedstring | Required. Speed by which refund was processed. Can be one of instant or normal. PGs are the ultimate arbitrator of which speed mode refund goes through. This might NOT always match what was included in the request parameters. |
{ "id": "refund-id", "status": "pending", "speed_processed": "normal" }
{ "messaging_product": "whatsapp", "interactive": { "action": { "name": "review_and_pay", "parameters": { "payment_settings": [ { "type": "payment_gateway", "payment_gateway": { "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 |
BHIM | bhim |
Amazon Pay | amazonpay |
CRED | cred |
Mobikwik | mobikwik |
enabled_payment_options to ["web"] to use your payment gateway’s web checkout. Payments with UPI enabled above this limit will fail.{ "messaging_product": "whatsapp", "interactive": { "action": { "name": "review_and_pay", "parameters": { "payment_settings": [ { "type": "payment_gateway", "payment_gateway": { "enabled_payment_options": ["upi"/"web"] } } ], "order": ... } } } }
| Enabled Option | Experience in checkout flow |
|---|---|
upi | Only UPI apps are show in checkout flow |
web | Payment gateway webpage is loaded and merchant payment gateway account configured payment options will be shown in the checkout flow. |
{ "messaging_product": "whatsapp", "interactive": { "action": { "name": "review_and_pay", "parameters": { "payment_settings": [ { "type": "razorpay", "razorpay": { "encrypted_payment_gateway_data": "encrypted-data" } } ], "order": {} } } } }
{ "bank_account": { "account_number": "account-no", "name": "consumer-cbs-name", "ifsc": "ifsc-code" } }
{ "messaging_product": "whatsapp", "interactive": { "action": { "name": "review_and_pay", "parameters": { "payment_settings": [ { "type": "payu", "payu": { "encrypted_payment_gateway_data": "encrypted-data" } } ], "order": {} } } } }
{ "beneficiaryDetail" : { "beneficiaryAccountNumber" : "account_number1|account_number2", "ifscCode" : "ifsc1|ifsc2" } }
order_status message is send to consumer informing them about updates to an order after receiving transaction updates for an order.