// Your customer "Acme Corp" wants to use WhatsAppconst customer = await createCustomer({ name: 'Acme Corp' });const setupLink = await generateSetupLink(customer.id);// Share the setup link with your customerconsole.log(`Setup link: ${setupLink.url}`);// Example: https://app.kapso.ai/setup/abc123xyz// After they connect, send messages from their WhatsAppawait sendWhatsAppMessage({ customer_id: customer.id, phone_number: '+1234567890', content: 'Order confirmed!'});