Skip to main content
POST
/
profile
/
image
Change WhatsApp profile image
curl --request POST \
  --url https://api.wppfy.com/profile/image \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "image": "https://picsum.photos/640/640.jpg"
}
'
{
  "success": true,
  "message": "Profile image changed successfully",
  "profile": {
    "image_updated": true,
    "image_removed": false,
    "updated_at": 1704067200
  }
}

Authorizations

token
string
header
required

Body

application/json
image
required

Profile image. Can be:

  • Image URL (http/https)
  • Base64 image string
  • "remove" or "delete" to remove the current image
Example:

"https://picsum.photos/640/640.jpg"

Response

Profile image changed successfully

success
boolean
Example:

true

message
string
Example:

"Profile image changed successfully"

profile
object