Home > Enterprise >  Whatsapp Cloud API Update Profile Picture
Whatsapp Cloud API Update Profile Picture

Time:06-04

I'm trying to upload an image as profile picture using WhatsApp Cloud API *.

After creating an application using WhatsApp Cloud API I'm not allowed to access neither using the regular application nor using Business Application. It says something like "try again in one hour". So I have to implement everything using the API.

After reading the docs and importing enter image description here

  • Save the handle result you got, 4::XXX==:XXXXXX.
  • Finally, call POST https://graph.facebook.com/{{Version}}/{{Phone-Number-ID}}/whatsapp_business_profile, with json request body: {"messaging_product": "whatsapp", "profile_picture_handle": "4::XXX==:XXXXXX"}
  • That's it, You can check the profile picture.

    • Related