Skip to main content

Profile

Update Profile Picture

Commandset_profile_picture.aspx
MethodPOST
Body
{ 
"jid" : "5511987654321@s.whatsapp.net", // JID of the connected instance account
"image_base64" : "/9j/4AAQSkZJRgABAQAASABIAAD/2wCEAAEBA...", // JPG image 640x640 (mandatory)
"thumb_base64" : "/9j/4AAQSkZJRgABAQAASABIAAD/2wCEAAEBA..." // JPG image 96x96 (mandatory)
}
Response

Connection information with the updated profile picture URL:

{
...
"JidInfo": {
"Jid": "5511987654321@s.whatsapp.net",
"Picture": "https://media02.witi.me/static/profile/55/11/98/76/5511987654321.jpeg?h=637794759441992776",
"PushName": "Support"
}
}

Remove Profile Picture

Commanddel_profile_picture.aspx
MethodPOST
Body
{ 
"jid" : "5511987654321@s.whatsapp.net", // JID of the connected instance account
}
Response
{
"resultado": true
}

Change Display Name (PushName)

Commandset_profile_status.aspx
MethodPOST
Body
{ 
"jid" : "5511987654321@s.whatsapp.net", // JID of the connected instance account
"NewStatus" : "Support", // Display name (PushName)
}
Response

Connection information with the updated PushName:

{
...
"JidInfo": {
"Jid": "5511987654321@s.whatsapp.net",
"Picture": null,
"PushName": "Support"
}
}