WhatsApp

Connection settings and WhatsApp-specific message templates

Auto Sender

WhatsApp message delivery

Stopped
Connection

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

Message Templates

WhatsApp-specific — assign per endpoint in Keepa

Loading templates...

Available Variables — use {{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}}