whatsapp_set_account_picture
Update your WhatsApp profile picture by providing base64 encoded image data. This tool allows you to change your account's display image through the WSAPI WhatsApp service.
Instructions
Update account profile picture.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pictureBase64 | Yes | Base64 encoded image data |
Input Schema (JSON Schema)
{
"properties": {
"pictureBase64": {
"description": "Base64 encoded image data",
"type": "string"
}
},
"required": [
"pictureBase64"
],
"type": "object"
}