> 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-settings-apis/whatsapp-profile-api.md).

# WhatsApp Profile API

This API allows to create & update WhatsApp Business Profile&#x20;

## WhatsApp Profile API

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

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

This API allows you to Create & Update WhatsApp Business Profile

#### Request Body

| Name         | Type    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| ------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| token        | string  | Your API Token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| application  | numeric | <p>Your Channel ID on which you want to update the profile <br><br>121 = WhatsApp Business API<br><br><strong>If you have connected multiple WhatsApp channels  then please get the channel id from your project under Settings -></strong> <a href="https://app.pickyassist.com/settings/channels">Channels </a></p>                                                                                                                                                                                  |
| about        | string  | Brief of your business , maximum 139 characters are allowed including emoji's                                                                                                                                                                                                                                                                                                                                                                                                                          |
| address      | string  | Address of your business , maximum 256 characters are allowed                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| description  | string  | Describe your nature of business, maximum 256 Characters are allowed                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| email        | string  | Email Address, maximum 250 characters are allowed                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| industry     | number  | <p>Select the Industry your business is categorised <br><br>1 => Automotive<br>2 => Beauty, Spa and Salon<br>3 => Clothing and Apparel<br>4 => Education<br>5 => Entertainment<br>6 => Event Planning and Service<br>7 => Finance and Banking<br>8 => Food and Grocery<br>9 => Public Service<br>10=> Hotel and Lodging<br>11=> Medical and Health<br>12=> Non-profit<br>13=> Professional Services<br>14=> Shopping and Retail<br>15=> Travel and Transportation<br>16=> Restaurant<br>17=> Other</p> |
| websites     | array   | This is an array in which you can pass upto 2 Websites                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| profile\_pic | string  | <p>Pass the Link of the picture be updated as profile picture <br><br><strong>File Size - 5 MB</strong><br><strong>Recommended dimension : 640x640</strong><br><strong>File Type - .jpeg,png,jpg</strong></p>                                                                                                                                                                                                                                                                                          |

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

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

{% endtab %}
{% endtabs %}

## Sample Request - Profile Update

```javascript
{ 
   "token":"782a357a2c871f54b83fd1a017f05eb6794",
   "about":"about me",
   "address":"test address",
   "description":"picky description",
   "email":"support@pickyassist.com",
   "industry":13,
   "websites":[ 
      "https://pickyassist.com"
   ],
   "profile_pic":"https://images.pexels.com/photos/160731/smilies-bank-sit-rest-160731.jpeg"
}
```

### Sample Response

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

### Error Code Status

| Error Code | Description                               |
| ---------- | ----------------------------------------- |
| 819        | The Maximum Length Of About Exceeds       |
| 820        | The Maximum Length Of Address Exceeds     |
| 821        | The Maximum Length Of Description Exceeds |
| 822        | The Maximum Length Of Email Exceeds       |
| 823        | Invalid Email Address                     |
| 824        | Maximum 2 Websites Allowed                |
| 825        | Invalid Industry                          |
| 826        | Invalid Website                           |
| 827        | The Maximum Length Of Website Exceeds     |
| 828        | The Image Size Should Not Exceed 5MB      |
| 830        | The Image Is Too Small                    |
| 831        | Unable To Upload Profile Photo            |

##


---

# 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, and the optional `goal` query parameter:

```
GET https://help.pickyassist.com/api-documentation-v2/whatsapp-settings-apis/whatsapp-profile-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
