Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Karytonn/df43cdc22946a4cf2f1a2b59dc662058 to your computer and use it in GitHub Desktop.
Save Karytonn/df43cdc22946a4cf2f1a2b59dc662058 to your computer and use it in GitHub Desktop.
Send transaction message by official WhatsApp API

Authorization

Bearer Toke - Bearer <TOKEN>

Request to

POST https://graph.facebook.com/<Version>/<Phone-Number-ID>/messages

Body

{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "<Recipient-Phone-Number>",
  "type": "template",
  "template": {
    "name": "<TEMPLATE_NAME>",
    "language": {
      "code": "pt_BR"
    },
    "components": [
      {
        "type": "body",
        "parameters": [
          {
            "type": "text",
            "text": "<TRANSECTION_CODE>"
          }
        ]
      },
      {
        "type": "button",
        "sub_type": "url",
        "index": "0",
        "parameters": [
          {
            "type": "text",
            "text": "<TRANSECTION_CODE>"
          }
        ]
      }
    ]
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment