-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhms.postman_collection.json
313 lines (313 loc) · 9.08 KB
/
hms.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
{
"info": {
"_postman_id": "63337cc6-857d-40f9-a611-e6714458cd18",
"name": "Dissertation - Observability",
"description": "# 🚀 Get started here\n\nThis template guides you through CRUD operations (GET, POST, PUT, DELETE), variables, and tests.\n\n## 🔖 **How to use this template**\n\n#### **Step 1: Send requests**\n\nRESTful APIs allow you to perform CRUD operations using the POST, GET, PUT, and DELETE HTTP methods.\n\nThis collection contains each of these [request](https://learning.postman.com/docs/sending-requests/requests/) types. Open each request and click \"Send\" to see what happens.\n\n#### **Step 2: View responses**\n\nObserve the response tab for status code (200 OK), response time, and size.\n\n#### **Step 3: Send new Body data**\n\nUpdate or add new data in \"Body\" in the POST request. Typically, Body data is also used in PUT request.\n\n```\n{\n \"name\": \"Add your name in the body\"\n}\n\n ```\n\n#### **Step 4: Update the variable**\n\nVariables enable you to store and reuse values in Postman. We have created a [variable](https://learning.postman.com/docs/sending-requests/variables/) called `base_url` with the sample request [https://postman-api-learner.glitch.me](https://postman-api-learner.glitch.me). Replace it with your API endpoint to customize this collection.\n\n#### **Step 5: Add tests in the \"Tests\" tab**\n\nTests help you confirm that your API is working as expected. You can write test scripts in JavaScript and view the output in the \"Test Results\" tab.\n\n<img src=\"https://content.pstmn.io/b5f280a7-4b09-48ec-857f-0a7ed99d7ef8/U2NyZWVuc2hvdCAyMDIzLTAzLTI3IGF0IDkuNDcuMjggUE0ucG5n\">\n\n## 💪 Pro tips\n\n- Use folders to group related requests and organize the collection.\n- Add more [scripts](https://learning.postman.com/docs/writing-scripts/intro-to-scripts/) in \"Tests\" to verify if the API works as expected and execute workflows.\n \n\n## 💡Related templates\n\n[API testing basics](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9a37a28-055b-49cd-8c7e-97494a21eb54&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[API documentation](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9c28f47-1253-44af-a2f3-20dce4da1f18&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[Authorization methods](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=31a9a6ed-4cdf-4ced-984c-d12c9aec1c27&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "2896153"
},
"item": [
{
"name": "HMS",
"item": [
{
"name": "Add new branch",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful POST request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);",
"",
" var jsonData = pm.response.json();",
" var branchId = jsonData.id;",
" pm.collectionVariables.set(\"branch_id\", branchId);",
"",
"});",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Hyderabad Branch\",\n \"address\": \"Kondapur, Hyderabad - 500084\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{hms_url}}/branch",
"host": [
"{{hms_url}}"
],
"path": [
"branch"
]
},
"description": "This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.\n\nA successful POST request typically returns a `200 OK` or `201 Created` response code."
},
"response": []
},
{
"name": "List all branches",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{hms_url}}/branch",
"host": [
"{{hms_url}}"
],
"path": [
"branch"
]
},
"description": "This is a GET request and it is used to \"get\" data from an endpoint. There is no request body for a GET request, but you can use query parameters to help specify the resource you want data on (e.g., in this request, we have `id=1`).\n\nA successful GET response will have a `200 OK` status, and should include some kind of response body - for example, HTML web content or JSON data."
},
"response": []
},
{
"name": "Get branch details",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{hms_url}}/branch/{{branch_id}}",
"host": [
"{{hms_url}}"
],
"path": [
"branch",
"{{branch_id}}"
]
}
},
"response": []
},
{
"name": "Add new department",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful POST request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);",
"",
" var jsonData = pm.response.json();",
" var branchId = jsonData.id;",
" pm.collectionVariables.set(\"dept_id\", branchId);",
"",
"});",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"branchId\": 1,\n \"name\": \"Pulmonology\",\n \"description\": \"Pulmonology Department\",\n \"phoneNumber\": \"+91-40-983984\",\n \"email\": \"[email protected]\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{hms_url}}/department",
"host": [
"{{hms_url}}"
],
"path": [
"department"
]
}
},
"response": []
},
{
"name": "List all departments",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{hms_url}}/department",
"host": [
"{{hms_url}}"
],
"path": [
"department"
]
}
},
"response": []
},
{
"name": "Get department details",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{hms_url}}/department/{{dept_id}}",
"host": [
"{{hms_url}}"
],
"path": [
"department",
"{{dept_id}}"
]
}
},
"response": []
}
]
},
{
"name": "HMS HR",
"item": [
{
"name": "Add new Employee",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful POST request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);",
"",
" var jsonData = pm.response.json();",
" var empId = jsonData.id;",
" pm.collectionVariables.set(\"emp_id\", empId);",
"",
"});",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"firstName\": \"Saroj\",\n \"lastName\": \"Gupta\",\n \"email\": \"[email protected]\",\n \"phone\": \"+91-9833839444\",\n \"role\": \"Clerk\",\n \"departmentId\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{hms_hr_url}}/employee",
"host": [
"{{hms_hr_url}}"
],
"path": [
"employee"
]
}
},
"response": []
},
{
"name": "Get all employees",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{hms_hr_url}}/employee",
"host": [
"{{hms_hr_url}}"
],
"path": [
"employee"
]
}
},
"response": []
},
{
"name": "Get employee details",
"request": {
"method": "GET",
"header": []
},
"response": []
}
]
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "hms_url",
"value": "http://localhost:8080"
},
{
"key": "hms_hr_url",
"value": "http://localhost:8090",
"type": "string"
},
{
"key": "branch_id",
"value": ""
},
{
"key": "dept_id",
"value": ""
},
{
"key": "emp_id",
"value": ""
}
]
}