-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.postman_collection.json
47 lines (47 loc) · 1.21 KB
/
api.postman_collection.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
{
"info": {
"name": "sdavids-node-docker-image-slimming REST API",
"description": "A simple endpoint in NodeJS with Express.\n\nContact Support:\n Name: Sebastian Davids\n Email: [email protected]",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Random User",
"request": {
"auth": {
"type": "noauth"
},
"description": "Returns a random user.",
"header": [],
"method": "GET",
"url": {
"host": ["{{Host}}"],
"path": [],
"port": "{{Port}}",
"protocol": "{{Protocol}}",
"raw": "{{Protocol}}://{{Host}}:{{Port}}/"
}
},
"response": []
},
{
"name": "Liveness Probe",
"request": {
"auth": {
"type": "noauth"
},
"description": "Liveness Probe",
"header": [],
"method": "GET",
"url": {
"host": ["{{Host}}"],
"path": ["-", "health", "liveness"],
"port": "{{Port}}",
"protocol": "{{Protocol}}",
"raw": "{{Protocol}}://{{Host}}:{{Port}}/-/health/liveness"
}
},
"response": []
}
]
}