I have a very simple chatbot in messenger, I have added a welcome screen and get started button
Now I would like to add an image at the top like this here
I am using samples codes from facebook
curl -X POST -H "Content-Type: application/json" -d '{
"greeting": [
{
"locale":"default",
"text":"Hello!"
}, {
"locale":"en_US",
"text":"Timeless apparel for the masses."
}
]
}' "https://graph.facebook.com/v2.6/me/messenger_profile?access_token=<PAGE_ACCESS_TOKEN>"
What do I need to change to get what I want ???