-
Notifications
You must be signed in to change notification settings - Fork 187
/
Bank_App.postman_collection.json
96 lines (96 loc) · 1.67 KB
/
Bank_App.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
{
"info": {
"_postman_id": "b90c97e1-4261-4a34-a348-a0604f0264a7",
"name": "Bank App",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Login",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "user",
"value": "test_user",
"type": "text"
},
{
"key": "password",
"value": "Test@1",
"type": "text"
}
]
},
"url": {
"raw": "https://bank-app-test.herokuapp.com/api/login",
"protocol": "https",
"host": [
"bank-app-test",
"herokuapp",
"com"
],
"path": [
"api",
"login"
]
}
},
"response": []
},
{
"name": "Statements",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "user",
"value": "4",
"type": "text"
},
{
"key": "password",
"value": "asdfa",
"type": "text"
}
]
},
"url": {
"raw": "https://bank-app-test.herokuapp.com/api/statements/1",
"protocol": "https",
"host": [
"bank-app-test",
"herokuapp",
"com"
],
"path": [
"api",
"statements",
"1"
]
}
},
"response": []
}
]
}