Responses
function ResponseToMessage(number, bodyText, messageID){
const data = JSON.stringify({
"messaging_product": "whatsapp",
"context": {
"message_id": messageID
},
"to": number,
"type": "text",
"text": {
"preview_url": "False",
"body": bodyText,
}
});
return data;
}let response = whatsappModel.messageResponse(number);Última actualización