The requirement is stated below.
I have two Intents, OfferIntent and SelectedOfferIntent, the offers are presented to User on successful trigger of OfferIntent, after this voice message I'm using reprompt to ask the User which offer he/she wants to select. When the user says option1,option2 etc it should trigger SelectedOfferIntent. Option1, option2 etc are captured as slot value for SelectedOfferIntent.
This is not working, User input after reprompt doesn't gets mapped to SelectedOfferIntent.
User: Alexa, ask mySkill are there any available offers for me.
Alexa: The available offers are offer1, offer2, offer3.
Alexa (Reprompt): Are you interested in these offers? If Yes, mention the offers as option1, option2, option3 etc. (here option1, option2 etc are captured in slot which is used in SelectedOfferIntent)
User: I select option2
Alexa: Sorry, I don't understand the command.
I need to further build the conversation. Any suggestion/help please.