-1

I have a bot setup in messenger and I did set up the get_started button. As per messenger document I executed the cURL to display the get_started button. I did this long back and I don't remember what was the payload I added in the request. Is there a way I can retrieve and know the payload currently saved? I am not able to find the reference in docs.

XCEPTION
  • 1,671
  • 1
  • 18
  • 38
  • _“I am not able to find the reference in docs”_ - what does it say in the box right on top of the page you linked to …? – CBroe Nov 29 '17 at 09:09
  • I have access to the docs sir. I am not able to find how to retrieve the properties of the get_started button and the reference for that section in the docs. – XCEPTION Nov 29 '17 at 09:13
  • 1
    Quote: _“`get_started` is a property of the Messenger Profile API. For information on **retrieving**, setting, updating, and deleting `get_started`, see the Messenger Profile API Reference.”_ – CBroe Nov 29 '17 at 09:28
  • 1
    It's a GET request to `https://graph.facebook.com/v2.11/me/messenger_profile?fields=get_started&access_token=` – bangdel Nov 29 '17 at 12:43

1 Answers1

0

You can read the messenger profile properties (get_started in this case) like so:

curl -X GET "https://graph.facebook.com/v2.6/me/messenger_profile?fields=get_started&access_token=<PAGE_ACCESS_TOKEN>"

See the docs: Messenger Platform Reference

andi79h
  • 1,087
  • 1
  • 12
  • 18