🆔 Profile

You can manage your WhatsApp profile with the following API!

Features

Here’s the list of features that are available by 🏭 Engines:

🆔 Profile - API
APIWEBJSNOWEBGOWS
Get Profile
GET /api/{SESSION}/profile
✔️✔️✔️
Set Profile Name
PUT /api/{SESSION}/profile/name
✔️✔️✔️
Set Profile Status (About)
PUT /api/{SESSION}/profile/status
✔️✔️✔️
Set/Delete Profile Status Picture
PUT /api/{SESSION}/profile/picture
DELETE /api/{SESSION}/profile/picture

➕ - Available in ➕ WAHA Plus

API

Get Profile

You can get your profile information with the following API call:

GET /api/{SESSION}/profile
Response
{
  "id": "111111111111@c.us",
  "name": "My Name",
  "picture": "https://pps.whatsapp.net/v/t/123.jpg?other-params"
}

Set Profile Name

You can set your name with the following API call

PUT /api/{SESSION}/profile/name
Body
{
  "name": "New Name"
}
Response
{
  "success": true
}

Set Profile Status

You can set your status (aka About) message with the following API call:

PUT /api/{SESSION}/profile/status
Body
{
  "status": "New Status"
}
Response
{
  "success": true
}

Set Profile Picture

You can set your profile picture with the following API call:

PUT /api/{SESSSION}/profile/picture
Response
{
  "success": true
}

Delete Profile Picture

You can delete your profile picture using this endpoint.

DELETE /api/{SESSION}/profile/picture
Response
{
  "success": true
}