-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactions.postman_collection.json
73 lines (73 loc) · 1.59 KB
/
Transactions.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
{
"info": {
"_postman_id": "d437dd5f-17e6-415d-84da-cf5fc8f12d9e",
"name": "Transactions",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "19113578"
},
"item": [
{
"name": "Post a new Transaction",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "[{\r\n\"amount\": 12750,\r\n\"date\": \"2022-01-15\",\r\n\"productName\":\"CURSO DE BEM-ESTAR\",\r\n\"sellerName\":\"JOSE CARLOS\",\r\n\"type\":\"producer_sell\",\r\n\"affectedUser\": \"JOSE CARLOS\"\r\n},{\r\n\"amount\":12750,\r\n\"date\": \"2022-01-15\",\r\n\"productName\":\"CURSO DE BEM-ESTAR\",\r\n\"sellerName\":\"JOSE CARLOS2\",\r\n\"type\":\"producer_sell\",\r\n\"affectedUser\": \"JOSE CARLOS\"\r\n}]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{LOCALHOST}}/api/transactions",
"host": [
"{{LOCALHOST}}"
],
"path": [
"api",
"transactions"
]
}
},
"response": []
},
{
"name": "Get a history of transactions",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{LOCALHOST}}/api/transactions",
"host": [
"{{LOCALHOST}}"
],
"path": [
"api",
"transactions"
]
}
},
"response": []
},
{
"name": "Get Balances",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{LOCALHOST}}/api/balances",
"host": [
"{{LOCALHOST}}"
],
"path": [
"api",
"balances"
]
}
},
"response": []
}
]
}