Send order detail & checkout button tmessage

Create order detail & checkout template

Send message

Send via API

api: api doc

example: click to see the request example

Send via Journey

  1. Set the trigger when you want to send a detailed message about the order. e.g. when the shopify checkout created.

  1. Add a Send templates component and choose the order details template message

  1. Save and active the Journey

Receive the order paid webhook

Subscribe to Webhook to receive payment status updates.

You receive updates via webhooks when the status of the user-initiated transaction changes. It occurs when payment status changes to captured (when the payment is successfully completed), or pending (when the user attempted but yet to receive success transactions signal).

Sample:

{
  "id": "evt_eEkn26qar3nOB8md",
  "type": "whatsapp.payment.updated",
  "apiVersion": "v2",
  "createTime": "2024-10-10T07:08:00.000Z",
  "whatsappPayment": {
    "wabaId": "WABA-ID",
    "referenceId": "<reference-id>",
    "status": "captured | pending",
    "transactions": [
      {
        "id": "<transaction-id>",
        "type": "billdesk | payu | razorpay | zaakpay",
        "status": "pending | success | failed",
        "createdTimestamp": 1728544066000,
        "updatedTimestamp": 1728544066000,
        "amount": {
          "value": 21000,
          "offset": 100
        },
        "currency": "INR",
        "methodType": "upi | card | wallet | netbanking",
        "error": {
          "code": "error-code",
          "reason": "error-reason"
        }
      }
    ]
  }
}

Last updated