I am new in Alexa development. I have successfully create an Alexa skill with AWS lambda function and Node.js code. This is my intent schema.
{
"intents": [
{
"slots": [
{
"name": "locationName",
"type": "LOCATION_LIST"
}
],
"intent": "locationIntent"
}
]
}
Also I have used custom slot type "LOCATION_LIST" with following values.
kitchen
bedroom
bathroom
dining area
It's working fine. But I need to add more location values dynamically from my own service. Is it possible?
Based on my system architecture, we cant pre-defined the location names. Then what should i do?