WasenderApi - Low Cost WhatsApp API for Developers Send Contact Card - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Send Contact Card

Messages

POST/api/send-message

Sends a message containing a contact card.

Send Contact Card

Send a message containing a contact card (vCard). Provide the contact details within the contact object parameter.

Parameters

NameTypeRequiredDescription
tostringYesRecipient phone number in E.164 format or, Group JID.
contactobjectYesContact card object.

Code Examples

curl -X POST "https://www.wasenderapi.com/api/send-message"
  -H "Authorization: Bearer YOUR_API_KEY"
  -H "Content-Type: application/json"
  -d '{
      "to": "+1234567890",
      "contact": {
          "name": "Support Team",
          "phone": "+1234567890"
      }
  }'

Response Examples

{
  "success": true,
  "data": {
    "msgId": 100000,
    "jid": "+123456789",
    "status": "in_progress"
  }
}