Trying to send a message using an authentication template(https://graph.facebook.com/v17.0/xxxxxxxx/messages). However, I am encountering the error "Receiver is incapable of receiving this message."
Docs Ref:-https://developers.facebook.com/docs/whatsapp/business-management-api/authentication-templates/copy-code-button-authentication-templates
there could be three potential reasons for the observed error as per the error message link; however, none of them appear plausible from my perspective: 1. The recipient's phone number is a valid WhatsApp number. 2. The recipient has accepted the new terms, evidenced by the fact that they are receiving OTPs from other businesses. 3. The recipient is utilizing the latest Android 14 with the most recent version of WhatsApp.
Furthermore, encountering difficulties sending OTPs through the test account number as well. and the authentication template(Copy-Code) is approved.
cURL
--location 'https://graph.facebook.com/v17.0/XXXXXXXXX/messages' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX' \
--data '{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "91XXXXXXXXXX",
"type": "template",
"template": {
"name": "otp_v1",
"language": {
"code": "en_US"
},
"components": [
{
"type": "body",
"parameters": [
{
"type": "text",
"text": "123456"
}
]
},
{
"type": "button",
"sub_type": "url",
"index": 0,
"parameters": [
{
"type": "text",
"text": "123456"
}
]
}
]
}
}'
Response
{
"messaging_product": "whatsapp",
"contacts": [
{
"input": "91XXXXXXXXXX",
"wa_id": "91XXXXXXXXXX"
}
],
"messages": [
{
"id": "wamid.HBgMOTE3Mjc1ODUwMzA3FQIAERgSRjkwM0YzRTMyOEVCRDlDMTE3AA==",
"message_status": "accepted"
}
]
}
Webhook Event
{
"object": "whatsapp_business_account",
"entry": [
{
"id": "195803446953838",
"changes": [
{
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "1XXXXXXXXXX",
"phone_number_id": "XXXXXXXXXXXXXXX"
},
"statuses": [
{
"id": "wamid.HBgMOTE3Mjc1ODUwMzA3FQIAERgSRjkwM0YzRTMyOEVCRDlDMTE3AA==",
"status": "failed",
"timestamp": "1705300625",
"recipient_id": "91XXXXXXXXXXX",
"errors": [
{
"code": 131026,
"title": "Receiver is incapable of receiving this message",
"message": "Receiver is incapable of receiving this message",
"error_data": {
"details": "Message Undeliverable."
},
"href": "https://developers.facebook.com/docs/whatsapp/cloud-api/support/error-codes/"
}
]
}
]
},
"field": "messages"
}
]
}
]
}