1msg official logo

WhatsApp Business API for pre-purchase consultation

The scenario sends the customer a personalized WhatsApp template message inviting them to a pre-purchase consultation.

Use case overview

The scenario sends the customer a personalized WhatsApp template message inviting them to a pre-purchase consultation. The text includes the customer's name, the product or service they showed interest in, and the company or specialist ready to answer questions. A link button leads to a booking page or consultation request form.

Template example

Hello, {{1}}!

You were interested in {{2}}. Specialist {{3}} is ready to provide a free pre-purchase consultation and answer your questions.

[Book consultation]

The consultation booking URL button is fixed in the Meta template — only body variables are sent via the API.

Variables and purpose

  • {{1}} — customer name
  • {{2}} — name of the product or service the customer showed interest in
  • {{3}} — company name or specialist name who conducts the consultation

Filled-in example

Hello, Anna!

You were interested in Resort Course package. Specialist TechStore is ready to provide a free pre-purchase consultation and answer your questions.

[Book consultation]

When to use it

  • e-commerce and marketplaces
  • b2b and services
  • agencies and small teams

Business value

  • detect purchase intent or a consultation-offer trigger in the business system
  • resolve customer phone, product context, and specialist or company name
  • send a personalised pre-purchase consultation invitation via WhatsApp
  • customer receives the message with a CTA link to book or request a consultation
  • log delivery result for follow-up in CRM or sales pipeline

Workflow

  1. The system detects purchase intent or an event where a consultation offer is appropriate (cart, price request, lead form).
  2. Customer phone, product or service context, and company or specialist data are taken from CRM, e-commerce, or the lead form.
  3. A personalized template message is built with three body variables and a static URL button for booking a consultation.
  4. The customer receives the WhatsApp message and can follow the link to book or request a consultation.
  5. Delivery result is logged for follow-up in CRM or the sales pipeline.
  6. Delivery progress is reported asynchronously — typically sent, then delivered (or failed/undelivered).
  7. Your system receives status via webhook (hooks[]) or polls GET …/hookInfo?messageId=<id> and handles failures if needed.

Technical implementation

Prerequisites

  • A 1MSG account with WhatsApp Business API connected and an approved message template.
  • Customer phone number in international format (without + and spaces).
  • Personalization data: customer name, product or service, company or specialist.

Code examples

Node.js

#!/usr/bin/env node

// === Configuration (replace "___" placeholders) ===

const API_BASE_URL = "https://api.1msg.io"; // production 1MSG API base URL
const CHANNEL_ID = "___";                   // channel ID from 1MSG dashboard
const API_TOKEN = "___";                    // channel JWT token (Bearer)

const TEMPLATE_NAME = "___";                // approved template name
const TEMPLATE_NAMESPACE = "___";           // template namespace (422 without it)
const TEMPLATE_LANGUAGE = "___";            // template language code, e.g. "en"



// === Test data ===
const TEST_PHONE = "___";            // client phone in international format
const TEST_CUSTOMERNAME = "___";    // {{1}} customer name
const TEST_PRODUCTORSERVICENAME = "___";    // {{2}} product or service name
const TEST_COMPANYORSPECIALISTNAME = "___";    // {{3}} company or specialist name

function normalizePhone(phone) {
  return String(phone).replace(/\D/g, "");
}

function assertConfigured(values) {
  for (const [key, value] of Object.entries(values)) {
    if (value === "___" || value === "" || value === undefined || value === null) {
      throw new Error(`Missing configuration value: ${key}`);
    }
  }
}

async function sendTemplateMessage({ phone, customerName, productOrServiceName, companyOrSpecialistName }) {
  assertConfigured({
    CHANNEL_ID,
    API_TOKEN,
    TEMPLATE_NAME,
    TEMPLATE_NAMESPACE,
    TEMPLATE_LANGUAGE,
    phone,
    customerName,
    productOrServiceName,
    companyOrSpecialistName,
  });

  const url = `${API_BASE_URL}/${CHANNEL_ID}/sendTemplate`;

  // params carries body ONLY. Button text is fixed in the Meta template — no button param.
  const requestBody = {
    phone: normalizePhone(phone),
    template: TEMPLATE_NAME,
    namespace: TEMPLATE_NAMESPACE,
    language: {
      policy: "deterministic",
      code: TEMPLATE_LANGUAGE,
    },
    params: [
      {
        type: "body",
        parameters: [
          { type: "text", text: String(customerName) }, // {{1}} customer name
          { type: "text", text: String(productOrServiceName) }, // {{2}} product or service name
          { type: "text", text: String(companyOrSpecialistName) }, // {{3}} company or specialist name
        ],
      },
    ],
  };

  const res = await fetch(url, {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      Authorization: `Bearer ${API_TOKEN}`,
    },
    body: JSON.stringify(requestBody),
  });

  const raw = await res.text();
  let data;
  try {
    data = JSON.parse(raw);
  } catch {
    data = null;
  }

  if (!res.ok || !data || data.sent !== true) {
    console.error("Send failed. API response:");
    console.error(raw);
    process.exit(1);
  }

  console.log("Message sent to client.");
  console.log("API response:", raw);
  return data;
}

if (require.main === module) {
  sendTemplateMessage({
    phone: TEST_PHONE,
    customerName: TEST_CUSTOMERNAME,
    productOrServiceName: TEST_PRODUCTORSERVICENAME,
    companyOrSpecialistName: TEST_COMPANYORSPECIALISTNAME,
  }).catch((err) => {
    console.error("Execution failed:", err.message);
    process.exit(1);
  });
}

module.exports = { sendTemplateMessage };

Immediate API response (synchronous)

  • HTTP 2xx and JSON "sent": true mean 1MSG accepted the message for sending — not that it already reached the customer's phone.
  • Save the `id` field from the response (value looks like wamid.…). Use it to correlate delivery callbacks or polling.
  • The response may also include message and description — informational only.

Delivery status (asynchronous)

  • Register a webhook (POST …/webhook) so 1MSG POSTs delivery updates to your HTTPS endpoint in a separate `hooks[]` payload (sent, delivered, read, or failed/undelivered when applicable).
  • Optionally poll: GET {base}/{channel}/hookInfo?messageId=<id from sendTemplate>.
  • In practice, delivery often completes within a few seconds — but that is not guaranteed by the API contract.

Common errors

  • Invalid or non-normalized phone number
  • Unapproved or missing template name / namespace
  • No customer opt-in for WhatsApp business messages
  • Template variable count mismatch (422 from API)
  • Delivery failure — check status webhook and retry policy

FAQ

  • Do I need an approved template? Yes — cold-start WhatsApp messages require a Meta-approved template.
  • Can I customize the message text? Body variables are dynamic; fixed text and button labels are set in the Meta template.
  • How do I check delivery? sent: true only confirms acceptance. Track delivery via webhook hooks[] or GET …/hookInfo?messageId=<id>.
  • What if the message is not delivered? Log the failed/undelivered hook, verify opt-in and template status, then retry or fall back to another channel.
  • Can I connect this to my CRM or backend? Yes — trigger the API call from your platform webhook or event handler.

CTA

Ready to use pre-purchase consultation? Connect your 1MSG channel and run the code examples above.

Related

Build WhatsApp automation in minutes

Use 1MSG to automate this workflow and try it with our free demo.

Try the demo →