forked from jivygroup/api-sandbox-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configurationServiceNewApi.json
108 lines (108 loc) · 2.38 KB
/
configurationServiceNewApi.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"text": "<span class='brand-name icon node-icon'><span style='padding-right: 0px' class='text-white text-bold'>CONFIG</span><span class='text-blue text-bold'>Service</span></span>",
"id": "1",
"type": "ORG",
"backColor": "black",
"nodes": [
{
"id": "1",
"text": "createRepo",
"backColor": "black",
"data": {
"q": "/configuration/createRepository",
"sid": 1,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME"
}
}
},
{
"id": "2",
"text": "createEntry",
"backColor": "black",
"data": {
"q": "/configuration/createEntry",
"sid": 2,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"key": "KEY-NAME",
"value": "JSON-DATA"
}
}
},
{
"id": "3",
"text": "updateEntry",
"backColor": "black",
"data": {
"q": "/configuration/updateEntry",
"sid": 3,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"key": "KEY-NAME",
"value": "JSON-DATA"
}
}
},
{
"id": "4",
"text": "readEntry",
"backColor": "black",
"data": {
"q": "/configuration/readEntry",
"sid": 4,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"key": "KEY-NAME",
"version": "VERSION NUMBER (default is LATEST)"
}
}
},
{
"id": "5",
"text": "readList",
"backColor": "black",
"data": {
"q": "/configuration/readList",
"sid": 5,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"version": "VERSION NUMBER (default is LATEST)"
}
}
},
{
"id": "6",
"text": "readEntryHistory",
"backColor": "black",
"data": {
"q": "/configuration/readEntryHistory",
"sid": 6,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"key": "KEY-NAME"
}
}
},
{
"id": "7",
"text": "deleteEntry",
"backColor": "black",
"data": {
"q": "/configuration/deleteEntry",
"sid": 7,
"d": {
"apiKey": "API-KEY",
"repository": "REPO-NAME",
"key": "KEY-NAME"
}
}
}
]
}