Lista Mono Producto
function ListProduct(number, headerText, footerText, catalogId, productRetailerId){
const data = JSON.stringify({
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": number,
"type": "interactive",
"interactive": {
"type": "product",
"body": {
"text": headerText
},
"footer": {
"text": footerText
},
"action": {
"catalog_id": catalogId,
"product_retailer_id": productRetailerId
}
}
});
return data;
}Última actualización