v1

latestOpenAPI 3.1.02026-07-14330101.9 KB

Create Group

Through this endpoint, users can create new WhatsApp groups directly using the API. This feature eliminates the need for manual group creation through the WhatsApp interface, providing developers with a streamlined way to programmatically generate groups. Users can specify parameters such as the group name and initial participants when making the request, allowing for flexible group creation. This is particularly valuable for apps or services that need to dynamically create and manage groups on behalf of their users, such as customer support teams, community platforms, or event organizers.

get/groups/create

Request body

namestring required

The group name

Response

200

successboolean
messagestring

Example response

{
  "success": true,
  "message": "OK",
  "data": {
    "id": "120363315031267748@g.us",
    "name": "Group Name",
    "created_at": "2024-09-08 14:33:53",
    "participant_count": 2
  }
}