Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

APIs Build an Alexa Skill Building an Alexa Skill Creating an Intent Schema

Creating an intent: Amazon Alexa Skills

I copied and pasted this into the intent side of Amazon Alexa skills :

"intent": "GetDefinition", "slots": [

{

  "name": "Term",
  "type": "LIST_OF_TERMS"

}

]

},

{ "intent": "AMAZON.HelpIntent" },

{ "intent": "AMAZON.StopIntent" },

{ "intent": "AMAZON.CancelIntent" }

and then this shows up: Error: There was a problem with your request: Unknown slot type 'LIST_OF_TERMS' for slot 'Term' What do I do? :(

1 Answer

Steven Parker
Steven Parker
229,644 Points

You probably just haven't created the custom slot type yet. That's covered in the next video.