> For the complete documentation index, see [llms.txt](https://help.pickyassist.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.pickyassist.com/api-documentation-v2/whatsapp-group-api/add-group-members.md).

# Add Group Members

Below API allows to Add Members into a WhatsApp Group

{% hint style="danger" %}

### The Maximum number of members in a group is 256 including admin's

{% endhint %}

{% hint style="danger" %}

### Please note Adding Users into Group may not work for all contacts if the user is enabled group privacy then you may not able to add them into a group. [Read More](https://faq.whatsapp.com/general/security-and-privacy/how-to-change-group-privacy-settings/?lang=en)

{% endhint %}

## Add Group Members

<mark style="color:green;">`POST`</mark> `https://pickyassist.com/app/api/v2/add-group-members`

This API allows you to Add Members into a Group

#### Request Body

| Name      | Type   | Description                                                                                                                                             |
| --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| token     | string | Your API Token for authentication                                                                                                                       |
| group\_id | string | <p>Your Unique group id which is given as response after you create a group<br></p>                                                                     |
| number    | array  | This is an array and you can pass multiple WhatsApp number to add into a WhatsApp Group, please pass the number along with country code without 0 or ++ |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "token": "c81f742beed18a5213ec1afcc03a6a3d3b",
    "group_id": "GY4008",
    "number": [
        "91894893424"
    ]
}
```

{% endtab %}
{% endtabs %}

## Sample Request Body JSON

```javascript
{
	"token": "7b1887119486225850e9832a24547105cfe3",
	"group_id": "9194055074-16117483",
	"number": [
    	"9194XXXXXXX"
	],
	"application":10
}

```

## Sample Response

```javascript
{
    "status": 100,
    "message": "Success"
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.pickyassist.com/api-documentation-v2/whatsapp-group-api/add-group-members.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
