Replying Chat on LIVE CHAT new feature
Andy Gracia Lee
#1
Andy Gracia Lee
can you make this
Reply To Message feature as described in this link
https://developers.facebook.com/docs/whatsapp/cloud-api/reference/messages/ />
curl -X POST \
'
https://graph.facebook.com/v18.0/FROM_PHONE_NUMBER/messages' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"messaging_product": "whatsapp",
"context": {
"message_id": "MESSAGE_ID"
},
"to": "PHONE_NUMBER",
"type": "text",
"text": {
"preview_url": false,
"body": "your-text-message-content"
}
}’

so we can reply from a message like on whatsapp application
we will glad if you can make it