Created
April 13, 2020 09:34
-
-
Save monoceros-tech/a5b6add59c8cec8a1ceec22a54316245 to your computer and use it in GitHub Desktop.
Alexa Requests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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