whatsapp_update_contact
Modify an existing WhatsApp contact's details, such as full name and first name, using the contact's ID to ensure accurate updates in your address book.
Instructions
Update an existing WhatsApp contact.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contactId | Yes | Contact ID (phone number with @s.whatsapp.net) | |
| firstName | Yes | First name of the contact (max 255 characters) | |
| fullName | Yes | Full name of the contact (max 255 characters) |
Input Schema (JSON Schema)
{
"properties": {
"contactId": {
"description": "Contact ID (phone number with @s.whatsapp.net)",
"type": "string"
},
"firstName": {
"description": "First name of the contact (max 255 characters)",
"type": "string"
},
"fullName": {
"description": "Full name of the contact (max 255 characters)",
"type": "string"
}
},
"required": [
"contactId",
"fullName",
"firstName"
],
"type": "object"
}