-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathalexa-skill-event-template.json
More file actions
53 lines (53 loc) · 1.18 KB
/
alexa-skill-event-template.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
{
"version": "1.0",
"session": {
"new": true,
"sessionId": "amzn1.echo-api.session.123123123",
"application": {
"applicationId": "amzn1.ask.skill.123"
},
"attributes": {
"key": "this is an attribute"
},
"user": {
"userId": "amzn1.ask.account.abc",
"accessToken": "Atza|AAAAAAAA...",
"permissions": {
"consentToken": "ZZZZZZZ..."
}
}
},
"context": {
"System": {
"device": {
"deviceId": "123456",
"supportedInterfaces": {
"AudioPlayer": {}
}
},
"application": {
"applicationId": "amzn1.ask.skill.foobar"
},
"user": {
"userId": "amzn1.ask.account.user_name",
"accessToken": "Atza|AAAAAAAA...",
"permissions": {
"consentToken": "ZZZZZZZ..."
}
},
"apiEndpoint": "https://api.amazonalexa.com",
"apiAccessToken": "AxThk..."
},
"AudioPlayer": {
"playerActivity": "PLAYING",
"token": "audioplayer-token",
"offsetInMilliseconds": 0
}
},
"request": {
"type": "LaunchRequest",
"requestId": "1234-5678-abcd",
"timestamp": "123123",
"locale": "en-US"
}
}