Skip to main content
import { WhatsAppClient } from '@kapso/whatsapp-cloud-api';

const client = new WhatsAppClient({
  baseUrl: 'https://api.kapso.ai/meta/whatsapp',
  kapsoApiKey: process.env.KAPSO_API_KEY!
});

await client.messages.sendDocument({
  phoneNumberId: '647015955153740',
  to: '15551234567',
  document: {
    link: 'https://example.com/invoice.pdf',
    caption: 'Your invoice for order #12345',
    filename: 'invoice-12345.pdf'
  }
});