Skip to main content
PUT
/
api
/
{session}
/
groups
/
{id}
/
description
Update group description
curl --request PUT \
  --url https://{host}/api/{session}/groups/{id}/description \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '{
  "description": "<string>"
}'
{
  "success": true,
  "message": "Description of the group updated successfully"
}

Description

This endpoint allows updating the description of a group.

URL Parameters

session
string
required
WhatsApp unique session ID
id
string
required
ID of the group in format 120363XXXXX@g.us

Body

{
  "description": "Description"
}

Body Parameters

PropertyTypeRequiredDescription
descriptionstring✅ YesNew description of the group

Response

{
  "success": true,
  "message": "Description of the group updated successfully"
}

Status Codes

  • 200 - Description updated successfully
  • 400 - Invalid parameters
  • 401 - Unauthorized
  • 403 - No permission (admins only)
  • 404 - Group not found

Usage Example

curl -X PUT https://api.wappfy.com.br/api/my-session/groups/120363XXXXX@g.us/description \
  -H "Content-Type: application/json" \
  -d '{
    "description": "New description of the group"
  }'

Authorizations

apikey
string
header
required

Your Wappfy API key (get it at dash.wappfy.com.br)

Path Parameters

id
string
required

ID do Grupo

Body

application/json
description
string
required
I