-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathDeployHub Backend API.postman_collection.json
More file actions
78 lines (78 loc) · 1.59 KB
/
DeployHub Backend API.postman_collection.json
File metadata and controls
78 lines (78 loc) · 1.59 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"info": {
"_postman_id": "10639bc7-63bf-4d9c-ba31-06c632243223",
"name": "DeployHub Backend API",
"description": "Postman API documentation for DeployHub Backend (Week 8 Challenge)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "33609178"
},
"item": [
{
"name": "Health Check",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "localhost:3000/api/health",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"health"
]
},
"description": "Provides a quick status of the DeployHub Backend API to confirm the service is up and responsive."
},
"response": []
},
{
"name": "Metrics",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "localhost:3000/api/metrics",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"metrics"
]
},
"description": "Exposes application runtime metrics for monitoring and alerting."
},
"response": []
},
{
"name": "Example Error",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "localhost:3000/api/error-test",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"error-test"
]
},
"description": "Returns a controlled error response to validate error handling and observability."
},
"response": []
}
]
}