WhatsApp payload selection using payload index

Hi, I am creating chatbot using rasa and I want to deploy it on WhatsApp. I am asking if anyone can help me on how to select a payload using its index as shown in the picture below. Screenshot from 2020-08-26 12-12-38 @akelad

Thanks

You can make use of buttons for this -You can write this in domain.yml and you can define this utterance under action - You can create 2 intents namely affirm - for yes responses and deny for no buttons and define them also under the intents section in domain.yml as follows

utter_faq_step4:

  • buttons:
    • payload: /affirm title: Yes
    • payload: /deny title: No

-text: Have you followed the steps to install the software?

intent : affirm

  • yes
  • oh yes
  • yeah
  • Yes I 'd like to
  • yep
  • hmm

intent: deny

  • no
  • nope
  • never
  • not at all
  • Noo
  • don want that

Thank you @martinavalogia for your reply. I know about that, because user have to reply with texts that’d classified as either affirm or deny intents. My question is, instead of replying using text (affirm or deny), how can I enable use to select(type) 1 for affirm and 2 for deny? (as shown in the example above) @akelad @tmbo @erohmensing

Apologies,but I am bit unsure about that aspect

Regards

Thanks @martinavalogia