-
Notifications
You must be signed in to change notification settings - Fork 17
/
Budgets BFM.postman_collection.json
388 lines (388 loc) · 9.89 KB
/
Budgets BFM.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
{
"info": {
"_postman_id": "74972777-2ed8-4787-957e-65cf16b51541",
"name": "Budgets BFM",
"description": "Welcome to Tink’s Postman collection for Financial calendar.\n\nFor detailed information on how to use Financial Calendar, visit [API docs page for this service](https://docs.tink.com/api#finance-management/cash-flow).\n\nThe documentation in this Postman collection shows how you get your Tink variables and enter them in Postman to be able to use this collection.\n\nPrerequisites:\n\n* Generated User\n* Accounts created and linked to a user\n* (Optional) Some transactions ingested for accounts\n \n\nIn Postman, go to the **Variables** tab, which should be the one with a green dot next to it.\n\nMake sure that you enter all of your variables in the **CURRENT VALUE** column.\n\nEnter the `bearer_token` value that you have generated. It's an authentication token generated for user not for app.\n\nThere is no need to change `ApiUrl` unless you want to use non-production environments.\n\n`businessBudgetId` would be filled automatically when this object is created from this collection, If needed it can be replaced with pre-existing id.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Create one-off budget",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"create one-off business budget should return HTTP 200\", function() {",
" pm.response.to.have.status(200);",
" // This is example how you can set collection variables after the response is received from the request",
" body = JSON.parse(pm.response.text())",
" pm.collectionVariables.set(\"businessBudgetId\", body.id);",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"targetAmount\": {\n \"value\": {\n \"unscaled_value\": 123,\n \"scale\": 0\n },\n \"currency_code\": \"SEK\"\n },\n \"title\": \"Test budget\",\n \"description\": \"Test budget's description\",\n \"recurrence\": {\n \"frequency\": \"ONE_OFF\",\n \"start\": \"2021-07-01\",\n \"end\": \"2021-07-31\"\n },\n \"allocationRules\": {\n \"expenseAllocationRules\": [],\n \"incomeAllocationRules\": [\n {\n \"categories\": [\n {\n \"id\": \"category-id-placeholder\"\n }\n ],\n \"accounts\": [\n {\n \"id\": \"account-id-placeholder\"\n }\n ],\n \"tags\": []\n }\n ]\n },\n \"type\": \"INCOME\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets"
]
}
},
"response": []
},
{
"name": "Create recurring budget",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"create recurring business budget should return HTTP 200\", function() {",
" pm.response.to.have.status(200);",
" // This is example how you can set collection variables after the response is received from the request",
" body = JSON.parse(pm.response.text())",
" pm.collectionVariables.set(\"businessBudgetId\", body.id);",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"targetAmount\": {\n \"value\": {\n \"unscaled_value\": 123,\n \"scale\": 0\n },\n \"currency_code\": \"SEK\"\n },\n \"title\": \"Test budget\",\n \"description\": \"Test budget's description\",\n \"recurrence\": {\n \"frequency\": \"MONTHLY\",\n \"start\": \"2021-07-01\",\n \"end\": \"2021-12-31\"\n },\n \"allocationRules\": {\n \"expenseAllocationRules\": [],\n \"incomeAllocationRules\": [\n {\n \"categories\": [\n {\n \"id\": \"category-id-placeholder\"\n }\n ],\n \"accounts\": [\n {\n \"id\": \"account-id-placeholder\"\n }\n ],\n \"tags\": []\n }\n ]\n },\n \"type\": \"INCOME\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets"
]
}
},
"response": []
},
{
"name": "Get budget history",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets/:budgetId/history",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets",
":budgetId",
"history"
],
"variable": [
{
"key": "budgetId",
"value": "{{businessBudgetId}}"
}
]
}
},
"response": []
},
{
"name": "Get budget details",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets/:budgetId",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets",
":budgetId"
],
"variable": [
{
"key": "budgetId",
"value": "{{businessBudgetId}}"
}
]
}
},
"response": []
},
{
"name": "Update budget",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "PATCH",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"targetAmount\": {\n \"value\": {\n \"unscaled_value\": 1000000,\n \"scale\": 0\n },\n \"currency_code\": \"SEK\"\n },\n \"title\": \"Test budget new title\",\n \"description\": \"Test budget's new description\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets/:budgetId",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets",
":budgetId"
],
"variable": [
{
"key": "budgetId",
"value": "{{businessBudgetId}}"
}
]
}
},
"response": []
},
{
"name": "Delete budget",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets/:budgetId",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets",
":budgetId"
],
"variable": [
{
"key": "budgetId",
"value": "{{businessBudgetId}}"
}
]
}
},
"response": []
},
{
"name": "List Business Budgets",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets?progress_status_in=ON_TRACK",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets"
],
"query": [
{
"key": "progress_status_in",
"value": "ON_TRACK"
}
]
}
},
"response": []
},
{
"name": "List Business Budget History",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{ApiUrl}}/finance-management/v1/business-budgets",
"host": [
"{{ApiUrl}}"
],
"path": [
"finance-management",
"v1",
"business-budgets"
]
}
},
"response": []
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{bearer_token}}",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});"
]
}
}
],
"variable": [
{
"key": "bearer_token",
"value": ""
},
{
"key": "ApiUrl",
"value": "https://api.tink.com",
"type": "string"
},
{
"key": "businessBudgetId",
"value": "",
"type": "string"
}
]
}