forked from jaboc83/ynab-sdk-dotnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec-v1-swagger.json
2984 lines (2984 loc) · 97.3 KB
/
spec-v1-swagger.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"description": "Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com",
"version": "1.0.0",
"title": "YNAB API Endpoints"
},
"schemes": ["https"],
"host": "api.youneedabudget.com",
"basePath": "/v1",
"tags": [
{
"name": "User"
},
{
"name": "Budgets"
},
{
"name": "Accounts",
"description": "The accounts for a budget"
},
{
"name": "Categories",
"description": "The categories for a budget"
},
{
"name": "Payees",
"description": "The payees for a budget"
},
{
"name": "Payee Locations",
"description": "When you enter a transaction and specify a payee on the YNAB mobile apps, the GPS coordinates for that location are stored, with your permission, so that the next time you are in the same place (like the Grocery store) we can pre-populate nearby payees for you! It’s handy and saves you time. This resource makes these locations available. Locations will not be available for all payees."
},
{
"name": "Months",
"description": "Each budget contains one or more months, which is where To be Budgeted, Age of Money and category (budgeted / activity / balances) amounts are available."
},
{
"name": "Transactions",
"description": "The transactions for a budget"
},
{
"name": "Scheduled Transactions",
"description": "The scheduled transactions for a budget"
}
],
"security": [
{
"bearer": []
}
],
"paths": {
"/user": {
"get": {
"tags": ["User"],
"summary": "User info",
"description": "Returns authenticated user information",
"operationId": "getUser",
"produces": ["application/json"],
"responses": {
"200": {
"description": "The user info",
"schema": {
"$ref": "#/definitions/UserResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets": {
"get": {
"tags": ["Budgets"],
"summary": "List budgets",
"description": "Returns budgets list with summary information",
"operationId": "getBudgets",
"produces": ["application/json"],
"parameters": [
{
"name": "include_accounts",
"in": "query",
"description": "Whether to include the list of budget accounts",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"description": "The list of budgets",
"schema": {
"$ref": "#/definitions/BudgetSummaryResponse"
}
},
"404": {
"description": "No budgets were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}": {
"get": {
"tags": ["Budgets"],
"summary": "Single budget",
"description": "Returns a single budget with all related entities. This resource is effectively a full budget export.",
"operationId": "getBudgetById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The requested budget",
"schema": {
"$ref": "#/definitions/BudgetDetailResponse"
}
},
"404": {
"description": "The specified budget was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/settings": {
"get": {
"tags": ["Budgets"],
"summary": "Budget Settings",
"description": "Returns settings for a budget",
"operationId": "getBudgetSettingsById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The requested budget settings",
"schema": {
"$ref": "#/definitions/BudgetSettingsResponse"
}
},
"404": {
"description": "The specified Budget was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/accounts": {
"get": {
"tags": ["Accounts"],
"summary": "Account list",
"description": "Returns all accounts",
"operationId": "getAccounts",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The list of requested accounts",
"schema": {
"$ref": "#/definitions/AccountsResponse"
}
},
"404": {
"description": "No accounts were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"post": {
"tags": ["Accounts"],
"summary": "Create a new account",
"description": "Creates a new account",
"operationId": "createAccount",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget (\"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget)",
"required": true,
"type": "string"
},
{
"name": "data",
"in": "body",
"description": "The account to create.",
"required": true,
"schema": {
"$ref": "#/definitions/SaveAccountWrapper"
}
}
],
"responses": {
"201": {
"description": "The account was successfully created",
"schema": {
"$ref": "#/definitions/AccountResponse"
}
},
"400": {
"description": "The request could not be understood due to malformed syntax or validation error(s).",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/accounts/{account_id}": {
"get": {
"tags": ["Accounts"],
"summary": "Single account",
"description": "Returns a single account",
"operationId": "getAccountById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "account_id",
"in": "path",
"description": "The id of the account",
"required": true,
"type": "string",
"format": "uuid"
}
],
"responses": {
"200": {
"description": "The requested account",
"schema": {
"$ref": "#/definitions/AccountResponse"
}
},
"404": {
"description": "The requested account was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/categories": {
"get": {
"tags": ["Categories"],
"summary": "List categories",
"description": "Returns all categories grouped by category group. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).",
"operationId": "getCategories",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The categories grouped by category group",
"schema": {
"$ref": "#/definitions/CategoriesResponse"
}
},
"404": {
"description": "No categories were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/categories/{category_id}": {
"get": {
"tags": ["Categories"],
"summary": "Single category",
"description": "Returns a single category. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).",
"operationId": "getCategoryById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "category_id",
"in": "path",
"description": "The id of the category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The requested category",
"schema": {
"$ref": "#/definitions/CategoryResponse"
}
},
"404": {
"description": "The category not was found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/months/{month}/categories/{category_id}": {
"get": {
"tags": ["Categories"],
"summary": "Single category for a specific budget month",
"description": "Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).",
"operationId": "getMonthCategoryById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "month",
"in": "path",
"description": "The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))",
"required": true,
"type": "string",
"format": "date"
},
{
"name": "category_id",
"in": "path",
"description": "The id of the category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The requested month category",
"schema": {
"$ref": "#/definitions/CategoryResponse"
}
},
"404": {
"description": "The month category was not was found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"patch": {
"tags": ["Categories"],
"summary": "Update a category for a specific month",
"description": "Update a category for a specific month. Only `budgeted` amount can be updated.",
"operationId": "updateMonthCategory",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "month",
"in": "path",
"description": "The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))",
"required": true,
"type": "string",
"format": "date"
},
{
"name": "category_id",
"in": "path",
"description": "The id of the category",
"required": true,
"type": "string"
},
{
"name": "data",
"in": "body",
"description": "The category to update. Only `budgeted` amount can be updated and any other fields specified will be ignored.",
"required": true,
"schema": {
"$ref": "#/definitions/SaveMonthCategoryWrapper"
}
}
],
"responses": {
"200": {
"description": "The month category was successfully updated",
"schema": {
"$ref": "#/definitions/SaveCategoryResponse"
}
},
"400": {
"description": "The request could not be understood due to malformed syntax or validation error(s)",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/payees": {
"get": {
"tags": ["Payees"],
"summary": "List payees",
"description": "Returns all payees",
"operationId": "getPayees",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The requested list of payees",
"schema": {
"$ref": "#/definitions/PayeesResponse"
}
},
"404": {
"description": "No payees were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/payees/{payee_id}": {
"get": {
"tags": ["Payees"],
"summary": "Single payee",
"description": "Returns a single payee",
"operationId": "getPayeeById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "payee_id",
"in": "path",
"description": "The id of the payee",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The requested payee",
"schema": {
"$ref": "#/definitions/PayeeResponse"
}
},
"404": {
"description": "The payee was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/payee_locations": {
"get": {
"tags": ["Payee Locations"],
"summary": "List payee locations",
"description": "Returns all payee locations",
"operationId": "getPayeeLocations",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The list of payee locations",
"schema": {
"$ref": "#/definitions/PayeeLocationsResponse"
}
},
"404": {
"description": "No payees locations were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/payee_locations/{payee_location_id}": {
"get": {
"tags": ["Payee Locations"],
"summary": "Single payee location",
"description": "Returns a single payee location",
"operationId": "getPayeeLocationById",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "payee_location_id",
"in": "path",
"description": "id of payee location",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The payee location",
"schema": {
"$ref": "#/definitions/PayeeLocationResponse"
}
},
"404": {
"description": "The payee location was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/payees/{payee_id}/payee_locations": {
"get": {
"tags": ["Payee Locations"],
"summary": "List locations for a payee",
"description": "Returns all payee locations for a specified payee",
"operationId": "getPayeeLocationsByPayee",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "payee_id",
"in": "path",
"description": "id of payee",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "The list of requested payee locations",
"schema": {
"$ref": "#/definitions/PayeeLocationsResponse"
}
},
"404": {
"description": "No payees locations were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/months": {
"get": {
"tags": ["Months"],
"summary": "List budget months",
"description": "Returns all budget months",
"operationId": "getBudgetMonths",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The list of budget months",
"schema": {
"$ref": "#/definitions/MonthSummariesResponse"
}
},
"404": {
"description": "No budget months were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/months/{month}": {
"get": {
"tags": ["Months"],
"summary": "Single budget month",
"description": "Returns a single budget month",
"operationId": "getBudgetMonth",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "month",
"in": "path",
"description": "The budget month in ISO format (e.g. 2016-12-01) (\"current\" can also be used to specify the current calendar month (UTC))",
"required": true,
"type": "string",
"format": "date"
}
],
"responses": {
"200": {
"description": "The budget month detail",
"schema": {
"$ref": "#/definitions/MonthDetailResponse"
}
},
"404": {
"description": "The budget month was not found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"default": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/transactions": {
"get": {
"tags": ["Transactions"],
"summary": "List transactions",
"description": "Returns budget transactions",
"operationId": "getTransactions",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "since_date",
"in": "query",
"description": "If specified, only transactions on or after this date will be included. The date should be ISO formatted (e.g. 2016-12-30).",
"required": false,
"type": "string",
"format": "date"
},
{
"name": "type",
"in": "query",
"description": "If specified, only transactions of the specified type will be included. \"uncategorized\" and \"unapproved\" are currently supported.",
"required": false,
"type": "string",
"enum": ["uncategorized", "unapproved"]
},
{
"name": "last_knowledge_of_server",
"in": "query",
"description": "The starting server knowledge. If provided, only entities that have changed since `last_knowledge_of_server` will be included.",
"required": false,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "The list of requested transactions",
"schema": {
"$ref": "#/definitions/TransactionsResponse"
}
},
"404": {
"description": "No transactions were found",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"400": {
"description": "An error occurred",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"post": {
"tags": ["Transactions"],
"summary": "Create a single transaction or multiple transactions",
"description": "Creates a single transaction or multiple transactions. If you provide a body containing a `transaction` object, a single transaction will be created and if you provide a body containing a `transactions` array, multiple transactions will be created. Scheduled transactions cannot be created on this endpoint.",
"operationId": "createTransaction",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "data",
"in": "body",
"description": "The transaction or transactions to create. To create a single transaction you can specify a value for the `transaction` object and to create multiple transactions you can specify an array of `transactions`. It is expected that you will only provide a value for one of these objects.",
"required": true,
"schema": {
"$ref": "#/definitions/SaveTransactionsWrapper"
}
}
],
"responses": {
"201": {
"description": "The transaction or transactions were successfully created",
"schema": {
"$ref": "#/definitions/SaveTransactionsResponse"
}
},
"400": {
"description": "The request could not be understood due to malformed syntax or validation error(s).",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
},
"409": {
"description": "A transaction on the same account with the same `import_id` already exists.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
},
"patch": {
"tags": ["Transactions"],
"summary": "Update multiple transactions",
"description": "Updates multiple transactions, by `id` or `import_id`.",
"operationId": "updateTransactions",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
},
{
"name": "data",
"in": "body",
"description": "The transactions to update. Each transaction must have either an `id` or `import_id` specified. If `id` is specified as null an `import_id` value can be provided which will allow transaction(s) to be updated by their `import_id`. If an `id` is specified, it will always be used for lookup.",
"required": true,
"schema": {
"$ref": "#/definitions/UpdateTransactionsWrapper"
}
}
],
"responses": {
"209": {
"description": "The transactions were successfully updated",
"schema": {
"$ref": "#/definitions/SaveTransactionsResponse"
}
},
"400": {
"description": "The request could not be understood due to malformed syntax or validation error(s).",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/budgets/{budget_id}/transactions/import": {
"post": {
"tags": ["Transactions"],
"summary": "Import transactions",
"description": "Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking \"Import\" on each account in the web application or tapping the \"New Transactions\" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported.",
"operationId": "importTransactions",
"produces": ["application/json"],
"parameters": [
{
"name": "budget_id",
"in": "path",
"description": "The id of the budget. \"last-used\" can be used to specify the last used budget and \"default\" can be used if default budget selection is enabled (see: https://api.youneedabudget.com/#oauth-default-budget).",
"required": true,
"type": "string"
}
],
"responses": {