get
https://partner.gupshup.io/partner/app//business/profile/about
This API endpoint retrieves the 'About' text from the WhatsApp Business profile for a specific partner application. The about text is the business description that appears on your WhatsApp Business profile and provides a brief introduction to your business, services, or mission. This is a simplified endpoint that returns only the description text, unlike the full profile endpoint which returns all profile fields.
Parameters
| Parameters | Value | Description |
|---|---|---|
| Authorization | {{PARTNER_APP_TOKEN}} | Access Token for the application |
| appId | {{APP_ID}} | Unique Identifier for Gupshup App |
Sample Request
curl --location --request GET 'https://partner.gupshup.io/partner/app/{{APP_ID}}/business/profile/about' \
--header 'Authorization: {{PARTNER_APP_TOKEN}}'Sample Response
{
"about": {
"message": "<about>"
},
"status": "success"
}