# Add Group Admin

Below API allows to add group admin&#x20;

{% hint style="warning" %}
Please note a group admin can view your group invite url and able to add / remove members manually. **So please be careful while promoting a member as admin.**
{% endhint %}

## Add Group Admin

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

This API allows you to Add Admin for 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 the response after you create a group<br></p>                                                                                                      |
| number    | array  | This is an array and you can pass multiple WhatsApp number to promote a member as admin, the number must be a member in the group, please pass country code along with number 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: 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-admin.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.
