You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good evening, I hope you are well I have a question. How can I send a message but that is the entire catalog without having to specify item by item? I got this one from the vonage documentation and it works fine, but I want to send the whole catalog.
Hi @JaimeCasillasBluu. Although Catalog Messages are supported by the Meta API, as I understand it the WhatsApp channel of the Vonage Messages API only officially supports Single Product Messages and Multi-product Messages. I will look into it further however, and follow up with the product manager for that particular channel. I'll post back here once I know more.
Hi @JaimeCasillasBluu spologies for the delay in getting back to you on this, I was awaiting a response from the product manager for WhatsApp. So I've heard back from them and technically you should be able to send catalog messages using the custom message type. I still need to figure out the correct JSON structure to do this, but will post back here once I've managed to get it working successfully.
@JaimeCasillasBluu you can only link an external account to one Vonage Application at a time. If an external account is already linked to an application, you have to unlink it in order to link it to a different one.
How do I
Good evening, I hope you are well I have a question. How can I send a message but that is the entire catalog without having to specify item by item? I got this one from the vonage documentation and it works fine, but I want to send the whole catalog.
API/Product
Messages
Code Sample
curl --location 'https://api.nexmo.com/v1/messages'
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
--header 'Content-Type: application/json'
--data '{
"from": "YOUR_WHATSAPP_NUMBER",
"to": "RECIPIENT_WHATSAPP_NUMBER",
"channel": "whatsapp",
"message_type": "custom",
"custom": {
"type": "interactive",
"interactive": {
"type": "product_list",
"header": {
"type": "text",
"text": "Catálogo de productos"
},
"body": {
"text": "New products from Michaels Grocery Store"
},
"footer": {
"text": "Thanks for shopping with us."
},
"action": {
"catalog_id": "YOUR_CATALOG_ID",
"sections": [
{
"title": "Pizza Choices",
"product_items": [
{
"product_retailer_id": "fb5pdbdoo1"
},
{
"product_retailer_id": "0kimt79l8m"
},
{
"product_retailer_id": "bwc7a7mh5i"
}
]
}
]
}
}
}
}'
The text was updated successfully, but these errors were encountered: