The Twilio API for WhatsApp is the quickest way to send messages on WhatsApps with Novu by prefixing the phone number of the subscriber with whatsapp: as shown below.

await novu.trigger('<WORKFLOW_TRIGGER_IDENTIFIER>',
  {
    to: {
      subscriberId: '<UNIQUE_SUBSCRIBER_IDENTIFIER>',
      phone: 'whatsapp:555-4242`
    },
  }
);

Read more about sending a Message with the Twilio API for WhatsApp.