-
Notifications
You must be signed in to change notification settings - Fork 0
/
apisList.json
47 lines (47 loc) · 1.31 KB
/
apisList.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
{
"apis": [
{
"name": "ZYZ API with Text Body",
"endpoint": "https://azy.com:3000/xyz",
"method": "POST",
"headers": {
"Content-type": "text/plain"
},
"owners": [
"ayz@gmail.com", "ayzTwo@gmail.com"
],
"componentId": "Need componentId if you want make it part of dashboard else ignore",
"slack": "Slack ID",
"body": "Body in text Hello World"
},
{
"name": "XYZ API with JSON Body",
"endpoint": "https://azy.com:3000/xyz",
"method": "POST",
"owners": [
"ayz@gmail.com"
],
"componentId": "Need componentId if you want make it part of dashboard else ignore",
"slack": "Slack ID",
"headers": {
"Content-Type": "application/json"
},
"json": {
"key": "value"
}
},
{
"name": "XYZ GET API",
"endpoint": "https://azy.com:3000/xyz",
"method": "GET",
"owners": [
"ayz@gmail.com"
],
"componentId": "Need componentId if you want make it part of dashboard else ignore",
"slack": "Slack ID",
"headers": {
"Content-Type": "application/json"
}
}
]
}