-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.json
92 lines (92 loc) · 2.31 KB
/
configuration.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[
{
"key": "UserName",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "UserName",
"description": "The UserName to connect to the API",
"required": true
}
},
{
"key": "Token",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Token",
"type": "password",
"description": "The token to connect to the API",
"required": true
}
},
{
"key": "Domain",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Domain",
"description": "The Domain to connect to the API",
"required": true
}
},
{
"key": "BaseUrl",
"type": "input",
"defaultValue": "https://api.nmbrs.nl",
"templateOptions": {
"label": "BaseUrl",
"description": "The URL to the API.",
"required": true
}
},
{
"key": "version",
"type": "input",
"defaultValue": "v3",
"templateOptions": {
"label": "API Version",
"description": "The version of the API",
"required": true
}
},
{
"key": "CompanyId",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "CompanyId",
"description": "The companyId for which the employees will be imported",
"required": true
}
},
{
"key": "DebtorId",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "DebtorId",
"description": "The DebtorId for which the departments will be imported",
"required": true
}
},
{
"key": "proxyAddress",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Proxy address",
"required": false
}
},
{
"key": "IsDebug",
"type": "checkbox",
"defaultValue": true,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]