forked from arienmalec/alexa-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alexa_request.json
70 lines (69 loc) · 1.65 KB
/
alexa_request.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"version": "1.0",
"session": {
"new": true,
"sessionId": "sessionId",
"application": {
"applicationId": "amzn1.ask.skill.someSkill"
},
"user": {
"userId": "amzn1.ask.account.some-account"
}
},
"context": {
"System": {
"application": {
"applicationId": "amzn1.ask.skill.3ebe6200-6118-4ec5-ada0-a57edfad3818"
},
"user": {
"userId": "amzn1.ask.account.user-id"
},
"device": {
"deviceId": "amzn1.ask.device.device-id",
"supportedInterfaces": {}
},
"apiEndpoint": "https://api.amazonalexa.com",
"apiAccessToken": "api-token"
}
},
"request": {
"type": "IntentRequest",
"requestId": "amzn1.echo-api.request.request-id",
"timestamp": "2018-06-30T16:34:34Z",
"locale": "it-IT",
"intent": {
"name": "Intent-Name",
"confirmationStatus": "NONE",
"slots": {
"SLOT_NAME": {
"name": "SLOT_NAME",
"resolutions": {
"resolutionsPerAuthority": [
{
"authority": "AUTH-1",
"status": {
"code": "ER_SUCCESS_MATCH"
},
"values": [
{
"value": {
"name": "SLOT_VALUE_0",
"id": "0"
}
},
{
"value": {
"name": "SLOT_VALUE_1",
"id": "1"
}
}
]
}
]
},
"confirmationStatus": "NONE"
}
}
}
}
}