put https://partner.gupshup.io/partner/app//business/profile/about
Use this API to update the about section of a business profile
Parameters
Parameters | Value | Description |
---|---|---|
Authorization | {{PARTNER_APP_TOKEN}} | Access Token for the application |
about | {{ABOUT}} | Business profile about |
APP ID | {{APP_ID}} | Unique Identifier for Gupshup App |
Sample Request
curl --location --request PUT 'https://partner.gupshup.io/partner/app/{{APP_ID}}/business/profile/about' \
--header 'Authorization: {{PARTNER_APP_TOKEN}}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'about={{ABOUT}}'
Sample Response
{
"about": {
"message": "<about>"
},
"status": "success"
}