-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
41 lines (41 loc) · 1.12 KB
/
manifest.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
{
"name": "marketo-middleware",
"description": "Marketo Middleware Integration",
"parameters": {
"MARKETO_REST_URL": {
"label": "Marketo Rest URL",
"type": "string",
"required": true
},
"MARKETO_CLIENT_ID": {
"label": "Marketo Client ID",
"type": "secret",
"required": true
},
"MARKETO_CLIENT_SECRET": {
"label": "Marketo Client Secret",
"type": "secret",
"required": true
},
"PREVIEW_FOLDER_ID": {
"label": "Preview Folder ID",
"type": "string"
},
"PUBLISH_FOLDER_ID": {
"label": "Publish Folder ID",
"type": "string"
},
"_content_type": {
"label": "Content Type Mapping",
"type": "json"
}
},
"webhooks": {
"preview": {
"description": "Webhook for Marketo Middleware",
"secret": "preview_secret",
"endpoint": "/preview/callback",
"event_names": ["content_preview_requested"]
}
}
}