Here's a sample script that I'm having troubles with :
User: Add contact 8888675309
Alexa: That phone number belongs to Jennifer Smith. What nickname should we use?
User: Jenny
Alexa: I heard Jenny, is that correct?
User: Yes
Alexa: Ok, I've added your contact Jenny
So, I have an intent that is triggered with "Add contact {phone_number}". Which returns a lookup based on the number provided by the user and then asks for a nickname for the contact. I'm having troubles with collecting the nickname. Instead of triggering my intent that can catch all user utterances, some other random intent is triggered and I don't get the utterance passed to my endpoint.
That nickname can be anything from "Jenny" to "Fighter Jet" and I need to be able to feedback the contact's name before I ask for the nickname (to ensure we're adding the right contact).
I feel like I'm missing something obvious and simple. I'm probably trying to solve this from the wrong direction. Any help to point me in the right direction would be appreciated.