-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
68 lines (68 loc) · 2.23 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
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
{
"name": "File Archive App",
"description": {
"short": "App for file archive",
"long": "This app is designed to allow for users to archive a signed DocuSign agreement"
},
"icon": {
"data": "iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAACxLAAAsSwGlPZapAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADcSURBVHgB7dwxCsMwEADBc8j/v+zUgTRJZNY2M6ULF1oOhECaAQAAAAAA7m778G0fjvS25o8hJUBMgJgAMQFi23xvX/ivK1uyDiYgJkBMgJgAMQFizzm/f8+mTr07MwExAWICxASICRC7wi7o1mdMJiAmQEyAmAAxAWICxASICRATICZATICYADEBYgLEBIgJEBMgJkBMgJgAMQFiAsQEiAkQEyAmQEyAmAAxAWICxASICRATICZATICYADEBYgLEBIitvCfsxd0fmICYADEBYgLEBAAAAAAAADjYCwxUBYWYirDwAAAAAElFTkSuQmCC",
"mediaType": "image/png"
},
"screenshots": [],
"publisher": {
"name": "John Doe",
"email": "[email protected]",
"phone": "800-867-5309",
"website": "www.johndoe.com"
},
"termsOfServiceUrl": "www.johndoe.com/tos",
"privacyUrl": "www.johndoe.com/privacy",
"supportUrl": "www.johndoe.com/support",
"connections": [
{
"name": "authentication",
"description": "secure connection to the file archive proxy",
"type": "oauth2",
"params": {
"provider": "CUSTOM",
"scopes": [],
"clientId": "<CLIENT_ID>",
"clientSecret": "<CLIENT_SECRET>",
"customConfig": {
"tokenUrl": "<PROXY_BASE_URL>/api/oauth/token",
"authorizationUrl": "<PROXY_BASE_URL>/api/oauth/authorize",
"authorizationParams": {
"access_type": "offline",
"prompt": "consent"
},
"authorizationMethod": "header",
"scopeSeparator": " ",
"requiredScopes": []
}
}
}
],
"extensions": [
{
"name": "My Archive Extension",
"description": "using to archive an envelope",
"template": "EAP.Version1.SpecifiedArchive",
"actionReferences": ["My Archive Action"]
}
],
"actions": [
{
"name": "My Archive Action",
"description": "something about archiving to a proxy",
"template": "Document.Version1.SpecifiedArchive",
"connectionsReference": "authentication",
"params": {
"uri": "<PROXY_BASE_URL>/api/archive"
}
}
],
"publicationRegions": [
"US"
],
"distribution": "PUBLIC"
}