Copy
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.sendLocation({
phoneNumberId: '647015955153740',
to: '15551234567',
location: {
latitude: 37.7749,
longitude: -122.4194,
name: 'Warehouse Location',
address: '123 Main St, San Francisco, CA'
}
});

