logo

Ejemplos

Last update: 7 months ago by Irais Aguirre

Producto único

Petición HTTP producto único

curl -X POST 'http://{{url}}/whatsapp-bsp-api-endpoint-ws/services/v1/messaging' \
-H 'Authorization: Bearer {{wa-msg-api-token}}' \
-H 'Content-Type: application/json' \
-d '{
"from": "5215500000001",
"to": "5215500000002",
"type": "contacts",
"singleProductMessage": {
"type": "product",
"body": "Habla Ingles en 8 meses",
"footer": "El curso de ingles incluye una hora diaria",
"action": {
"catalogId": "1374748992926971",
"productRetailerId": "ING_0001"
}
}
}'

Body producto único

{
"from": "5215500000001",
"to": "5215500000002",
"type": "contacts",
"singleProductMessage": {
"type": "product",
"body": "Habla Ingles en 8 meses",
"footer": "El curso de ingles incluye una hora diaria",
"action": {
"catalogId": "1374748992926971",
"productRetailerId": "ING_0001"
}
}
}


Múltiples productos

Petición HTTP múltiples productos

curl -X POST 'http://{{url}}/whatsapp-bsp-api-endpoint-ws/services/v1/messaging' \
-H 'Authorization: Bearer {{wa-msg-api-token}}' \
-H 'Content-Type: application/json' \
-d '{
"from": "5215500000001",
"to": "5215500000002",
"type": "contacts",
"multiProductMessage": {
"type": "product_list",
"header": {
"type": "text",
"text": "Clases de Ingles"
},
"body": "Aprende Ingles",
"footer": "La mejor escuela de ingles",
"action": {
"catalogId": "1374748992926971",
"sections": [
{
"title": "Mi Seccion de Ingles",
"productItems": [
{
"productRetailerId": "ING_0001"
},
{
"productRetailerId": "LLPI12102021"
}
]
}
]
}
}
}'

Body múltiples productos

{
"from": "5215500000001",
"to": "5215500000002",
"type": "contacts",
"multiProductMessage": {
"type": "product_list",
"header": {
"type": "text",
"text": "Clases de Ingles"
},
"body": "Aprende Ingles",
"footer": "La mejor escuela de ingles",
"action": {
"catalogId": "1374748992926971",
"sections": [
{
"title": "Mi Seccion de Ingles",
"productItems": [
{
"productRetailerId": "ING_0001"
},
{
"productRetailerId": "LLPI12102021"
}
]
}
]
}
}
}
Whatsapp — Anterior
Objetos
Siguiente — Whatsapp
Flows