I\'m new to writing Alexa skills and want to write a skill to store the speaker\'s words. For example, if I say, \'Alexa, save {whatever i say}\', it should save the wor
You can try using the slot type AMAZON.SearchQuery. So you intent would be something like this
{ "intents": [ { "intent": "SaveIntent", "slots": [ { "name": "UpdateText", "type": "AMAZON.SearchQuery" } ] } ] }