skip to Main Content

Is there any API to create intents and utterances in alexa from a third party system like “Magento”.

Any help would be highly appreciated.

2

Answers


  1. Check Voice Apps and Invocable

    These are 3rd party online tools to help you build and publish Alexa Skills with drag and drop facility. You can easily create intents, slots and add utterances.

    Login or Signup to reply.
  2. I think you’re looking for Alexa Skill Management API (SMAPI). This is official and You’ll need to create a Amazon app to use it. All details can be found here

    SMAPI provides RESTful HTTP interfaces for programmatically performing Alexa skill management tasks, such as creating a new skill or updating an interaction model.

    You’ll can first create a Skill using the above API, then create/update intents and slots using Interaction Model Management. To do this you’ll need to be comfortable with Interaction Model Schemas and a sample Scheme can be found here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search