Connection settings and WhatsApp-specific message templates
WhatsApp message delivery
WhatsApp Business API credentials
The WhatsApp number your bot uses to send messages
Group ID ends with @g.us, individual with @s.whatsapp.net
Appended to Amazon affiliate links in WhatsApp messages
How often to send WhatsApp notifications
WhatsApp-specific — assign per endpoint in Keepa
Loading templates...
{{variable}}
Conditional Logic
Simple if
{{#if deepest}}
🏆 Best price!
{{/if}}
If / else
{{#if savedPercent > 30}}
🔥 Big deal!
{{#else}}
💡 Good deal
{{/if}}
Unless
{{#unless deepest}}
Not lowest price
{{/unless}}
Comparisons
{{#if rating >= 4.5}}
⭐ Top rated
{{/if}}
Operators
> < >= <= == != truthiness
Nested
{{#if deepest}}
{{#if rating > 4}}
🏆⭐
{{/if}}
{{/if}}