Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In Orbita, you can only have one Can Fullfill Intent Node in a project.

Sample Canfullfill request

Code Block
{
    "session":{
      "new": true,
      "sessionId":"SessionId.4505e78b-3770-4a4e-9289-94af3028eaaa",
      "application":{
        "applicationId":"amzn1.ask.skill.05c81495-25ae-436c-81ff-4d21afa0339e"
      },
      "attributes":{
        "key": "string value"
      },
      "user":{
        "userId":"amzn1.ask.account.2a62567d-c273-45e3-8bc5-08aefad470ec"
      }
    },
    "request":{
      "type":"CanFulfillIntentRequest",
      "requestId":"EdwRequestId.b1a08947-236d-4774-9e6e-88fe05b30d81",
      "intent":{
        "name":"MyNameIsIntent",
        "slots":{
          "name":{
            "name":"name",
            "value":"Jeff"
          }
        }
      },
      "locale":"en-US",
      "timestamp":"2017-10-03T22:02:29Z"
    },
    "context":{
      "AudioPlayer":{
        "playerActivity":"IDLE"
      },
      "System":{
        "application":{
            "applicationId":"amzn1.ask.skill.05c81495-25ae-436c-81ff-4d21afa0339e"
        },
        "user":{
            "userId":"amzn1.ask.account.2a62567d-c273-45e3-8bc5-08aefad470ec"
        },
        "device":{
          "supportedInterfaces":{

          }
        }
      }
    },
    "version":"1.0"
  }

Reference:

https://developer.amazon.com/en-US/docs/alexa/custom-skills/implement-canfulfillintentrequest-for-name-free-interaction.html

...