-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 974 Bytes
/
app.json
File metadata and controls
30 lines (30 loc) · 974 Bytes
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
{
"name": "Webhooks Email Sample",
"description": "A simple app to send emails from Tableau Server Webhooks",
"repository": "https://github.com/KeshiaRose/datadev-webhooks-email",
"keywords": ["tableau", "webhooks", "datadev"],
"env": {
"SENDGRID_API_KEY": {
"description": "Your SendGrid API Key."
},
"PAT_NAME": {
"description": "Your Personal Access Token Name."
},
"PAT_SECRET": {
"description": "Your Personal Access Token Secret."
},
"SERVER": {
"description": "Your Tableau Server address. Include protocol."
},
"SITE_NAME": {
"description": "Your Tableau site content URL."
},
"VERSION": {
"description": "The Tableau REST API version.",
"value": "3.8"
},
"MY_EMAIL": {
"description": "An email addreess to use with the sample."
}
}
}