# Update Group Info

Below API allows to Update Group Info

## Update Group Info

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

This API allows you to update Group Info

#### Request Body

| Name           | Type   | Description                                                                                     |
| -------------- | ------ | ----------------------------------------------------------------------------------------------- |
| token          | string | Your API Token for authentication                                                               |
| group\_id      | string | Pass the Group ID you would like to update the Group Info                                       |
| group\_subject | string | Pass the new group subject you would like to set, maximum of 25 characters                      |
| group\_icon    | string | Pass the URL you would like to set as Group Icon **(Not Supported in WhatsApp Web Automation)** |

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

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

{% endtab %}
{% endtabs %}

## Sample Request Body JSON

```javascript
{
	"token": "7b1887119486225850e9832a24547105cfe3",
	"group_id": "91940055074-161217483",
	"group_subject": "picky test group",
	"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/update-group-info.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.
