Skip to content

Instantly share code, notes, and snippets.

@monoceros-tech
Created April 13, 2020 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monoceros-tech/a5b6add59c8cec8a1ceec22a54316245 to your computer and use it in GitHub Desktop.
Save monoceros-tech/a5b6add59c8cec8a1ceec22a54316245 to your computer and use it in GitHub Desktop.
Alexa Requests
requests = {
"LaunchRequest": {
"type": "LaunchRequest",
"requestId": "string",
"timestamp": "string",
"locale": "string"
},
"CanFulfillIntentRequest":{
},
"SessionEndedRequest":{
"type": "SessionEndedRequest",
"requestId": "string",
"timestamp": "string",
"reason": "string",
"locale": "string",
"error": {
"type": "string",
"message": "string"
}
},
"IntentRequest":{
"type": "IntentRequest",
"requestId": "string",
"timestamp": "string",
"dialogState": "string",
"locale": "string",
"intent": {
"name": "string",
"confirmationStatus": "string",
"slots": {
"SlotName": {
"name": "string",
"value": "string",
"confirmationStatus": "string",
"resolutions": {
"resolutionsPerAuthority": [
{
"authority": "string",
"status": {
"code": "string"
},
"values": [
{
"value": {
"name": "string",
"id": "string"
}
}
]
}
]
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment