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.sendSticker({
phoneNumberId: '647015955153740',
to: '15551234567',
sticker: {
id: '798882015472548'
}
});
curl -X POST 'https://api.kapso.ai/meta/whatsapp/v24.0/647015955153740/messages' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"messaging_product": "whatsapp",
"to": "15551234567",
"type": "sticker",
"sticker": {
"id": "798882015472548"
}
}'
Using a link
await client.messages.sendSticker({
phoneNumberId: '647015955153740',
to: '15551234567',
sticker: {
link: 'https://example.com/sticker.webp'
}
});
curl -X POST 'https://api.kapso.ai/meta/whatsapp/v24.0/647015955153740/messages' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"messaging_product": "whatsapp",
"to": "15551234567",
"type": "sticker",
"sticker": {
"link": "https://example.com/sticker.webp"
}
}'

