-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfiguration.json
More file actions
61 lines (61 loc) · 1.65 KB
/
Copy pathconfiguration.json
File metadata and controls
61 lines (61 loc) · 1.65 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
54
55
56
57
58
59
60
61
[
{
"key": "BaseUrl",
"type": "input",
"templateOptions": {
"label": "BaseUrl",
"placeholder": "Example: https://12345.rest.afas.online/profitrestservices",
"description": "The URL of your Profit environment",
"required": true
}
},
{
"key": "Token",
"type": "input",
"templateOptions": {
"label": "Token",
"type": "password",
"placeholder": "Example: <token><version>1</version><data>555012345678901234567890123456789</data></token>",
"description": "The AppConnector token to connect to Profit.",
"required": true
}
},
{
"key": "positionsAction",
"type": "radio",
"defaultValue": "usePositions",
"templateOptions": {
"label": "What to do with positions?",
"description": "Do not change this in a production environment, as this can lead to the revocation of authorizations.",
"options": [
{
"value": "onlyEmployments",
"label": "Only use employments, do not use positions"
},
{
"value": "usePositions",
"label": "Use employments and positions, block person when position is missing"
}
]
}
},
{
"key": "excludePersonsWithoutContractsInHelloID",
"type": "checkbox",
"defaultValue": true,
"templateOptions": {
"label": "Exclude persons without contracts in HelloID",
"required": false
}
},
{
"key": "isDebug",
"type": "checkbox",
"defaultValue": false,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]