whatsapp_create_contact
Create a new WhatsApp contact by providing phone number, full name, and first name to add to your WhatsApp account.
Instructions
Create a new WhatsApp contact.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| firstName | Yes | First name of the contact (max 255 characters) | |
| fullName | Yes | Full name of the contact (max 255 characters) | |
| id | Yes | Contact ID (phone number with @s.whatsapp.net) |
Input Schema (JSON Schema)
{
"properties": {
"firstName": {
"description": "First name of the contact (max 255 characters)",
"type": "string"
},
"fullName": {
"description": "Full name of the contact (max 255 characters)",
"type": "string"
},
"id": {
"description": "Contact ID (phone number with @s.whatsapp.net)",
"type": "string"
}
},
"required": [
"id",
"fullName",
"firstName"
],
"type": "object"
}