WhatsApp Business API for courier or driver contact — share contact card
This scenario sends a WhatsApp contact card with sendContact during the 24-hour customer service window after a driver or courier is assigned to the order.
Use case overview
This scenario sends a WhatsApp contact card with sendContact during the 24-hour customer service window after a driver or courier is assigned to the order.
Template example
Your courier contact for this delivery is in the card below.
Contact name and phone are set in the integration contract for this courier handoff profile.
When to use it
- last-mile delivery
- fleet handoff
Business value
- TMS or OMS assigns a driver or courier while the WhatsApp session is open
- Backend resolves courier display name and phone number
- sendContact delivers the vCard to the client thread
- Client saves or calls the driver from the contact card
- Delivery handoff is logged in the ecommerce or logistics platform
Workflow
- Logistics assigns a driver or courier to the delivery.
- Your backend loads the courier display name and phone number.
- sendContact delivers the contact card in the active session.
- The client saves or calls the courier from WhatsApp.
- Delivery progress is reported asynchronously — typically
sent, thendelivered(or failed/undelivered). - Your system receives status via webhook (
hooks[]) or polls delivery status and handles failures if needed.
Technical implementation
Prerequisites
- An open WhatsApp session window.
- 1MSG channel with sendContact access and the courier phone in E.164 format.
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)
// === Test data ===
const TEST_PHONE = "___"; // client phone in international format · requires open 24-hour session window
function normalizePhone(phone) {
return String(phone).replace(/\D/g, "");
}
async function sendContactMessage({ phone }) {
const url = `${API_BASE_URL}/${CHANNEL_ID}/sendContact`;
const requestBody = {
phone: normalizePhone(phone),
contacts: [
{
name: {
formatted_name: "Иван Курьер", // specialist display name (code_contract)
first_name: "Иван Курьер",
last_name: "",
},
phones: [{ phone: "+998901234567", type: "CELL" }], // specialist phone in E.164 format
},
],
};
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.");
console.error(raw);
process.exit(1);
}
console.log("Message sent to client.");
return data;
}
if (require.main === module) {
sendContactMessage({ phone: TEST_PHONE }).catch((err) => {
console.error("Execution failed:", err.message);
process.exit(1);
});
}
module.exports = { sendContactMessage };
Immediate API response (synchronous)
- HTTP 2xx and JSON
"sent": truemean 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
messageanddescription— 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
- Session window closed (no client message within 24 hours)
- Invalid or non-normalized phone number
- Missing or invalid message body / media URL
- Delivery failure — check status webhook and retry policy
FAQ
- Do I need a template? No — this scenario uses a session message inside the 24-hour customer service window.
- When does the session window close? If the client has not written or replied within 24 hours, sendMessage will fail until a template reopens the chat.
- How do I check delivery?
sent: trueonly confirms acceptance. Track delivery via webhookhooks[]or polling. - What if the message is not delivered? Log the failed/undelivered hook, verify the session window, then retry or use a template.
- Can I connect this to my CRM or backend? Yes — trigger the API call from your inbound webhook or workflow engine.
CTA
Ready to use courier or driver contact — share contact card? 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.
WhatsApp Business API for order handed to delivery notificationWhatsApp Business API for order delivered confirmationWhatsApp Business API for order cancellation notificationWhatsApp Business API for new route or trip notificationWhatsApp Business API for new order confirmationWhatsApp Business API for failed delivery attempt notificationWhatsApp Business API for delivery update — share pickup locationWhatsApp Business API for delivery delay notification
