put https://partner.gupshup.io/partner/app//business/profile/photo
Use this API to update the profile picture set for a business profile
Parameters
Parameters | Value | Description |
---|---|---|
Authorization | {{PARTNER_APP_TOKEN}} | Access Token for the application |
appID | {{APP_ID}} | Unique Identifier for Gupshup App |
image | {{FILE_PATH}} | Profile photo image file |
Sample Request
curl --location --request PUT 'https://partner.gupshup.io/partner/app/{{APP_ID}}/business/profile/photo' \
--header 'Authorization: {{PARTNER_APP_TOKEN}}' \
--form 'image=@"/path/to/file"'
Sample Response
{
"message": "profile picture updated successfully",
"status": "success"
}