budgea_client 1.3.6 → 1.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +0 -5
  3. data/Gemfile.lock +3 -23
  4. data/README.md +14 -1
  5. data/budgea_openapi.json +12 -0
  6. data/config.json +2 -1
  7. data/docs/AdministrationApi.md +144 -18
  8. data/docs/AuthenticationApi.md +64 -8
  9. data/docs/BanksApi.md +896 -112
  10. data/docs/ConnectionsApi.md +128 -16
  11. data/docs/DocumentsApi.md +608 -76
  12. data/docs/OCRApi.md +16 -2
  13. data/docs/OIDCApi.md +24 -3
  14. data/docs/PFMApi.md +312 -39
  15. data/docs/ProvidersApi.md +864 -108
  16. data/docs/RecipientsApi.md +32 -4
  17. data/docs/TermsApi.md +32 -4
  18. data/docs/TransfersApi.md +320 -40
  19. data/docs/UsersManagementApi.md +96 -12
  20. data/docs/WealthApi.md +112 -14
  21. data/lib/budgea_client/api/administration_api.rb +18 -18
  22. data/lib/budgea_client/api/authentication_api.rb +8 -8
  23. data/lib/budgea_client/api/banks_api.rb +112 -112
  24. data/lib/budgea_client/api/connections_api.rb +16 -16
  25. data/lib/budgea_client/api/documents_api.rb +76 -76
  26. data/lib/budgea_client/api/ocr_api.rb +2 -2
  27. data/lib/budgea_client/api/oidc_api.rb +3 -3
  28. data/lib/budgea_client/api/pfm_api.rb +39 -39
  29. data/lib/budgea_client/api/providers_api.rb +108 -108
  30. data/lib/budgea_client/api/recipients_api.rb +4 -4
  31. data/lib/budgea_client/api/terms_api.rb +4 -4
  32. data/lib/budgea_client/api/transfers_api.rb +40 -40
  33. data/lib/budgea_client/api/users_management_api.rb +12 -12
  34. data/lib/budgea_client/api/wealth_api.rb +14 -14
  35. data/lib/budgea_client/api_client.rb +1 -0
  36. data/lib/budgea_client/configuration.rb +7 -0
  37. data/lib/budgea_client/version.rb +1 -1
  38. metadata +2 -4
  39. data/pkg/budgea_client-1.3.5.gem +0 -0
  40. data/pkg/budgea_client-1.3.6.gem +0 -0
@@ -25,6 +25,13 @@ This endpoint creates a new temporary token related to a new anonymous user.<br>
25
25
  ```ruby
26
26
  # load the gem
27
27
  require 'budgea_client'
28
+ # setup authorization
29
+ BudgeaClient.configure do |config|
30
+ # Configure API key authorization: api_key
31
+ config.api_key['Authorization'] = 'YOUR API KEY'
32
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
33
+ #config.api_key_prefix['Authorization'] = 'Bearer'
34
+ end
28
35
 
29
36
  api_instance = BudgeaClient::AuthenticationApi.new
30
37
 
@@ -55,7 +62,7 @@ Name | Type | Description | Notes
55
62
 
56
63
  ### Authorization
57
64
 
58
- No authorization required
65
+ [api_key](../README.md#api_key)
59
66
 
60
67
  ### HTTP request headers
61
68
 
@@ -75,6 +82,13 @@ In order to register a new user with the OAuth 2 process, the client has to call
75
82
  ```ruby
76
83
  # load the gem
77
84
  require 'budgea_client'
85
+ # setup authorization
86
+ BudgeaClient.configure do |config|
87
+ # Configure API key authorization: api_key
88
+ config.api_key['Authorization'] = 'YOUR API KEY'
89
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
90
+ #config.api_key_prefix['Authorization'] = 'Bearer'
91
+ end
78
92
 
79
93
  api_instance = BudgeaClient::AuthenticationApi.new
80
94
 
@@ -114,7 +128,7 @@ Name | Type | Description | Notes
114
128
 
115
129
  ### Authorization
116
130
 
117
- No authorization required
131
+ [api_key](../README.md#api_key)
118
132
 
119
133
  ### HTTP request headers
120
134
 
@@ -134,6 +148,13 @@ This endpoint generates a new temporary token for the user.<br><br>In case the a
134
148
  ```ruby
135
149
  # load the gem
136
150
  require 'budgea_client'
151
+ # setup authorization
152
+ BudgeaClient.configure do |config|
153
+ # Configure API key authorization: api_key
154
+ config.api_key['Authorization'] = 'YOUR API KEY'
155
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
156
+ #config.api_key_prefix['Authorization'] = 'Bearer'
157
+ end
137
158
 
138
159
  api_instance = BudgeaClient::AuthenticationApi.new
139
160
 
@@ -155,7 +176,7 @@ This endpoint does not need any parameter.
155
176
 
156
177
  ### Authorization
157
178
 
158
- No authorization required
179
+ [api_key](../README.md#api_key)
159
180
 
160
181
  ### HTTP request headers
161
182
 
@@ -175,6 +196,13 @@ This endpoint removes the token in use.<br><br>
175
196
  ```ruby
176
197
  # load the gem
177
198
  require 'budgea_client'
199
+ # setup authorization
200
+ BudgeaClient.configure do |config|
201
+ # Configure API key authorization: api_key
202
+ config.api_key['Authorization'] = 'YOUR API KEY'
203
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
204
+ #config.api_key_prefix['Authorization'] = 'Bearer'
205
+ end
178
206
 
179
207
  api_instance = BudgeaClient::AuthenticationApi.new
180
208
 
@@ -195,7 +223,7 @@ nil (empty response body)
195
223
 
196
224
  ### Authorization
197
225
 
198
- No authorization required
226
+ [api_key](../README.md#api_key)
199
227
 
200
228
  ### HTTP request headers
201
229
 
@@ -215,6 +243,13 @@ deletes all connections of the user given his hash<br><br>
215
243
  ```ruby
216
244
  # load the gem
217
245
  require 'budgea_client'
246
+ # setup authorization
247
+ BudgeaClient.configure do |config|
248
+ # Configure API key authorization: api_key
249
+ config.api_key['Authorization'] = 'YOUR API KEY'
250
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
251
+ #config.api_key_prefix['Authorization'] = 'Bearer'
252
+ end
218
253
 
219
254
  api_instance = BudgeaClient::AuthenticationApi.new
220
255
 
@@ -235,7 +270,7 @@ nil (empty response body)
235
270
 
236
271
  ### Authorization
237
272
 
238
- No authorization required
273
+ [api_key](../README.md#api_key)
239
274
 
240
275
  ### HTTP request headers
241
276
 
@@ -255,6 +290,13 @@ This endpoint deletes the user.<br><br>
255
290
  ```ruby
256
291
  # load the gem
257
292
  require 'budgea_client'
293
+ # setup authorization
294
+ BudgeaClient.configure do |config|
295
+ # Configure API key authorization: api_key
296
+ config.api_key['Authorization'] = 'YOUR API KEY'
297
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
298
+ #config.api_key_prefix['Authorization'] = 'Bearer'
299
+ end
258
300
 
259
301
  api_instance = BudgeaClient::AuthenticationApi.new
260
302
 
@@ -286,7 +328,7 @@ Name | Type | Description | Notes
286
328
 
287
329
  ### Authorization
288
330
 
289
- No authorization required
331
+ [api_key](../README.md#api_key)
290
332
 
291
333
  ### HTTP request headers
292
334
 
@@ -306,6 +348,13 @@ Get a user
306
348
  ```ruby
307
349
  # load the gem
308
350
  require 'budgea_client'
351
+ # setup authorization
352
+ BudgeaClient.configure do |config|
353
+ # Configure API key authorization: api_key
354
+ config.api_key['Authorization'] = 'YOUR API KEY'
355
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
356
+ #config.api_key_prefix['Authorization'] = 'Bearer'
357
+ end
309
358
 
310
359
  api_instance = BudgeaClient::AuthenticationApi.new
311
360
 
@@ -337,7 +386,7 @@ Name | Type | Description | Notes
337
386
 
338
387
  ### Authorization
339
388
 
340
- No authorization required
389
+ [api_key](../README.md#api_key)
341
390
 
342
391
  ### HTTP request headers
343
392
 
@@ -357,6 +406,13 @@ Create an access_token for this user and get it.<br><br>
357
406
  ```ruby
358
407
  # load the gem
359
408
  require 'budgea_client'
409
+ # setup authorization
410
+ BudgeaClient.configure do |config|
411
+ # Configure API key authorization: api_key
412
+ config.api_key['Authorization'] = 'YOUR API KEY'
413
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
414
+ #config.api_key_prefix['Authorization'] = 'Bearer'
415
+ end
360
416
 
361
417
  api_instance = BudgeaClient::AuthenticationApi.new
362
418
 
@@ -387,7 +443,7 @@ Name | Type | Description | Notes
387
443
 
388
444
  ### Authorization
389
445
 
390
- No authorization required
446
+ [api_key](../README.md#api_key)
391
447
 
392
448
  ### HTTP request headers
393
449
 
data/docs/BanksApi.md CHANGED
@@ -129,6 +129,13 @@ Get account types
129
129
  ```ruby
130
130
  # load the gem
131
131
  require 'budgea_client'
132
+ # setup authorization
133
+ BudgeaClient.configure do |config|
134
+ # Configure API key authorization: api_key
135
+ config.api_key['Authorization'] = 'YOUR API KEY'
136
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
137
+ #config.api_key_prefix['Authorization'] = 'Bearer'
138
+ end
132
139
 
133
140
  api_instance = BudgeaClient::BanksApi.new
134
141
 
@@ -157,7 +164,7 @@ Name | Type | Description | Notes
157
164
 
158
165
  ### Authorization
159
166
 
160
- No authorization required
167
+ [api_key](../README.md#api_key)
161
168
 
162
169
  ### HTTP request headers
163
170
 
@@ -177,6 +184,13 @@ Get an account type
177
184
  ```ruby
178
185
  # load the gem
179
186
  require 'budgea_client'
187
+ # setup authorization
188
+ BudgeaClient.configure do |config|
189
+ # Configure API key authorization: api_key
190
+ config.api_key['Authorization'] = 'YOUR API KEY'
191
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
192
+ #config.api_key_prefix['Authorization'] = 'Bearer'
193
+ end
180
194
 
181
195
  api_instance = BudgeaClient::BanksApi.new
182
196
 
@@ -208,7 +222,7 @@ Name | Type | Description | Notes
208
222
 
209
223
  ### Authorization
210
224
 
211
- No authorization required
225
+ [api_key](../README.md#api_key)
212
226
 
213
227
  ### HTTP request headers
214
228
 
@@ -228,6 +242,13 @@ Delete the supplied category
228
242
  ```ruby
229
243
  # load the gem
230
244
  require 'budgea_client'
245
+ # setup authorization
246
+ BudgeaClient.configure do |config|
247
+ # Configure API key authorization: api_key
248
+ config.api_key['Authorization'] = 'YOUR API KEY'
249
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
250
+ #config.api_key_prefix['Authorization'] = 'Bearer'
251
+ end
231
252
 
232
253
  api_instance = BudgeaClient::BanksApi.new
233
254
 
@@ -259,7 +280,7 @@ Name | Type | Description | Notes
259
280
 
260
281
  ### Authorization
261
282
 
262
- No authorization required
283
+ [api_key](../README.md#api_key)
263
284
 
264
285
  ### HTTP request headers
265
286
 
@@ -279,6 +300,13 @@ Edit the name for the supplied category.<br><br>
279
300
  ```ruby
280
301
  # load the gem
281
302
  require 'budgea_client'
303
+ # setup authorization
304
+ BudgeaClient.configure do |config|
305
+ # Configure API key authorization: api_key
306
+ config.api_key['Authorization'] = 'YOUR API KEY'
307
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
308
+ #config.api_key_prefix['Authorization'] = 'Bearer'
309
+ end
282
310
 
283
311
  api_instance = BudgeaClient::BanksApi.new
284
312
 
@@ -313,7 +341,7 @@ Name | Type | Description | Notes
313
341
 
314
342
  ### Authorization
315
343
 
316
- No authorization required
344
+ [api_key](../README.md#api_key)
317
345
 
318
346
  ### HTTP request headers
319
347
 
@@ -333,6 +361,13 @@ It requires the name of the category to be created<br><br>
333
361
  ```ruby
334
362
  # load the gem
335
363
  require 'budgea_client'
364
+ # setup authorization
365
+ BudgeaClient.configure do |config|
366
+ # Configure API key authorization: api_key
367
+ config.api_key['Authorization'] = 'YOUR API KEY'
368
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
369
+ #config.api_key_prefix['Authorization'] = 'Bearer'
370
+ end
336
371
 
337
372
  api_instance = BudgeaClient::BanksApi.new
338
373
 
@@ -364,7 +399,7 @@ Name | Type | Description | Notes
364
399
 
365
400
  ### Authorization
366
401
 
367
- No authorization required
402
+ [api_key](../README.md#api_key)
368
403
 
369
404
  ### HTTP request headers
370
405
 
@@ -384,6 +419,13 @@ Get list of connectors
384
419
  ```ruby
385
420
  # load the gem
386
421
  require 'budgea_client'
422
+ # setup authorization
423
+ BudgeaClient.configure do |config|
424
+ # Configure API key authorization: api_key
425
+ config.api_key['Authorization'] = 'YOUR API KEY'
426
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
427
+ #config.api_key_prefix['Authorization'] = 'Bearer'
428
+ end
387
429
 
388
430
  api_instance = BudgeaClient::BanksApi.new
389
431
 
@@ -412,7 +454,7 @@ Name | Type | Description | Notes
412
454
 
413
455
  ### Authorization
414
456
 
415
- No authorization required
457
+ [api_key](../README.md#api_key)
416
458
 
417
459
  ### HTTP request headers
418
460
 
@@ -432,6 +474,13 @@ By default, it selects a set of 3 connections.<br><br>
432
474
  ```ruby
433
475
  # load the gem
434
476
  require 'budgea_client'
477
+ # setup authorization
478
+ BudgeaClient.configure do |config|
479
+ # Configure API key authorization: api_key
480
+ config.api_key['Authorization'] = 'YOUR API KEY'
481
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
482
+ #config.api_key_prefix['Authorization'] = 'Bearer'
483
+ end
435
484
 
436
485
  api_instance = BudgeaClient::BanksApi.new
437
486
 
@@ -467,7 +516,7 @@ Name | Type | Description | Notes
467
516
 
468
517
  ### Authorization
469
518
 
470
- No authorization required
519
+ [api_key](../README.md#api_key)
471
520
 
472
521
  ### HTTP request headers
473
522
 
@@ -487,6 +536,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
487
536
  ```ruby
488
537
  # load the gem
489
538
  require 'budgea_client'
539
+ # setup authorization
540
+ BudgeaClient.configure do |config|
541
+ # Configure API key authorization: api_key
542
+ config.api_key['Authorization'] = 'YOUR API KEY'
543
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
544
+ #config.api_key_prefix['Authorization'] = 'Bearer'
545
+ end
490
546
 
491
547
  api_instance = BudgeaClient::BanksApi.new
492
548
 
@@ -518,7 +574,7 @@ Name | Type | Description | Notes
518
574
 
519
575
  ### Authorization
520
576
 
521
- No authorization required
577
+ [api_key](../README.md#api_key)
522
578
 
523
579
  ### HTTP request headers
524
580
 
@@ -538,6 +594,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
538
594
  ```ruby
539
595
  # load the gem
540
596
  require 'budgea_client'
597
+ # setup authorization
598
+ BudgeaClient.configure do |config|
599
+ # Configure API key authorization: api_key
600
+ config.api_key['Authorization'] = 'YOUR API KEY'
601
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
602
+ #config.api_key_prefix['Authorization'] = 'Bearer'
603
+ end
541
604
 
542
605
  api_instance = BudgeaClient::BanksApi.new
543
606
 
@@ -569,7 +632,7 @@ Name | Type | Description | Notes
569
632
 
570
633
  ### Authorization
571
634
 
572
- No authorization required
635
+ [api_key](../README.md#api_key)
573
636
 
574
637
  ### HTTP request headers
575
638
 
@@ -589,6 +652,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
589
652
  ```ruby
590
653
  # load the gem
591
654
  require 'budgea_client'
655
+ # setup authorization
656
+ BudgeaClient.configure do |config|
657
+ # Configure API key authorization: api_key
658
+ config.api_key['Authorization'] = 'YOUR API KEY'
659
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
660
+ #config.api_key_prefix['Authorization'] = 'Bearer'
661
+ end
592
662
 
593
663
  api_instance = BudgeaClient::BanksApi.new
594
664
 
@@ -620,7 +690,7 @@ Name | Type | Description | Notes
620
690
 
621
691
  ### Authorization
622
692
 
623
- No authorization required
693
+ [api_key](../README.md#api_key)
624
694
 
625
695
  ### HTTP request headers
626
696
 
@@ -640,6 +710,13 @@ Ressource to get all existing categories<br><br>
640
710
  ```ruby
641
711
  # load the gem
642
712
  require 'budgea_client'
713
+ # setup authorization
714
+ BudgeaClient.configure do |config|
715
+ # Configure API key authorization: api_key
716
+ config.api_key['Authorization'] = 'YOUR API KEY'
717
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
718
+ #config.api_key_prefix['Authorization'] = 'Bearer'
719
+ end
643
720
 
644
721
  api_instance = BudgeaClient::BanksApi.new
645
722
 
@@ -668,7 +745,7 @@ Name | Type | Description | Notes
668
745
 
669
746
  ### Authorization
670
747
 
671
- No authorization required
748
+ [api_key](../README.md#api_key)
672
749
 
673
750
  ### HTTP request headers
674
751
 
@@ -688,6 +765,13 @@ It requires an array of transaction dictionaries. Any fields of transactions tha
688
765
  ```ruby
689
766
  # load the gem
690
767
  require 'budgea_client'
768
+ # setup authorization
769
+ BudgeaClient.configure do |config|
770
+ # Configure API key authorization: api_key
771
+ config.api_key['Authorization'] = 'YOUR API KEY'
772
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
773
+ #config.api_key_prefix['Authorization'] = 'Bearer'
774
+ end
691
775
 
692
776
  api_instance = BudgeaClient::BanksApi.new
693
777
 
@@ -721,7 +805,7 @@ Name | Type | Description | Notes
721
805
 
722
806
  ### Authorization
723
807
 
724
- No authorization required
808
+ [api_key](../README.md#api_key)
725
809
 
726
810
  ### HTTP request headers
727
811
 
@@ -741,6 +825,13 @@ Get connections without a user
741
825
  ```ruby
742
826
  # load the gem
743
827
  require 'budgea_client'
828
+ # setup authorization
829
+ BudgeaClient.configure do |config|
830
+ # Configure API key authorization: api_key
831
+ config.api_key['Authorization'] = 'YOUR API KEY'
832
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
833
+ #config.api_key_prefix['Authorization'] = 'Bearer'
834
+ end
744
835
 
745
836
  api_instance = BudgeaClient::BanksApi.new
746
837
 
@@ -769,7 +860,7 @@ Name | Type | Description | Notes
769
860
 
770
861
  ### Authorization
771
862
 
772
- No authorization required
863
+ [api_key](../README.md#api_key)
773
864
 
774
865
  ### HTTP request headers
775
866
 
@@ -789,6 +880,13 @@ Get list of connectors
789
880
  ```ruby
790
881
  # load the gem
791
882
  require 'budgea_client'
883
+ # setup authorization
884
+ BudgeaClient.configure do |config|
885
+ # Configure API key authorization: api_key
886
+ config.api_key['Authorization'] = 'YOUR API KEY'
887
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
888
+ #config.api_key_prefix['Authorization'] = 'Bearer'
889
+ end
792
890
 
793
891
  api_instance = BudgeaClient::BanksApi.new
794
892
 
@@ -817,7 +915,7 @@ Name | Type | Description | Notes
817
915
 
818
916
  ### Authorization
819
917
 
820
- No authorization required
918
+ [api_key](../README.md#api_key)
821
919
 
822
920
  ### HTTP request headers
823
921
 
@@ -837,6 +935,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
837
935
  ```ruby
838
936
  # load the gem
839
937
  require 'budgea_client'
938
+ # setup authorization
939
+ BudgeaClient.configure do |config|
940
+ # Configure API key authorization: api_key
941
+ config.api_key['Authorization'] = 'YOUR API KEY'
942
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
943
+ #config.api_key_prefix['Authorization'] = 'Bearer'
944
+ end
840
945
 
841
946
  api_instance = BudgeaClient::BanksApi.new
842
947
 
@@ -868,7 +973,7 @@ Name | Type | Description | Notes
868
973
 
869
974
  ### Authorization
870
975
 
871
- No authorization required
976
+ [api_key](../README.md#api_key)
872
977
 
873
978
  ### HTTP request headers
874
979
 
@@ -888,6 +993,13 @@ Delete a single Logo object.
888
993
  ```ruby
889
994
  # load the gem
890
995
  require 'budgea_client'
996
+ # setup authorization
997
+ BudgeaClient.configure do |config|
998
+ # Configure API key authorization: api_key
999
+ config.api_key['Authorization'] = 'YOUR API KEY'
1000
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1001
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1002
+ end
891
1003
 
892
1004
  api_instance = BudgeaClient::BanksApi.new
893
1005
 
@@ -922,7 +1034,7 @@ Name | Type | Description | Notes
922
1034
 
923
1035
  ### Authorization
924
1036
 
925
- No authorization required
1037
+ [api_key](../README.md#api_key)
926
1038
 
927
1039
  ### HTTP request headers
928
1040
 
@@ -942,6 +1054,13 @@ This endpoint creates or update a bank logo. This logo is a mapping between a fi
942
1054
  ```ruby
943
1055
  # load the gem
944
1056
  require 'budgea_client'
1057
+ # setup authorization
1058
+ BudgeaClient.configure do |config|
1059
+ # Configure API key authorization: api_key
1060
+ config.api_key['Authorization'] = 'YOUR API KEY'
1061
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1062
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1063
+ end
945
1064
 
946
1065
  api_instance = BudgeaClient::BanksApi.new
947
1066
 
@@ -976,7 +1095,7 @@ Name | Type | Description | Notes
976
1095
 
977
1096
  ### Authorization
978
1097
 
979
- No authorization required
1098
+ [api_key](../README.md#api_key)
980
1099
 
981
1100
  ### HTTP request headers
982
1101
 
@@ -996,6 +1115,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
996
1115
  ```ruby
997
1116
  # load the gem
998
1117
  require 'budgea_client'
1118
+ # setup authorization
1119
+ BudgeaClient.configure do |config|
1120
+ # Configure API key authorization: api_key
1121
+ config.api_key['Authorization'] = 'YOUR API KEY'
1122
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1123
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1124
+ end
999
1125
 
1000
1126
  api_instance = BudgeaClient::BanksApi.new
1001
1127
 
@@ -1027,7 +1153,7 @@ Name | Type | Description | Notes
1027
1153
 
1028
1154
  ### Authorization
1029
1155
 
1030
- No authorization required
1156
+ [api_key](../README.md#api_key)
1031
1157
 
1032
1158
  ### HTTP request headers
1033
1159
 
@@ -1047,6 +1173,13 @@ This endpoint creates a bank logo. You can either pass a file to as a parameter
1047
1173
  ```ruby
1048
1174
  # load the gem
1049
1175
  require 'budgea_client'
1176
+ # setup authorization
1177
+ BudgeaClient.configure do |config|
1178
+ # Configure API key authorization: api_key
1179
+ config.api_key['Authorization'] = 'YOUR API KEY'
1180
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1181
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1182
+ end
1050
1183
 
1051
1184
  api_instance = BudgeaClient::BanksApi.new
1052
1185
 
@@ -1078,7 +1211,7 @@ Name | Type | Description | Notes
1078
1211
 
1079
1212
  ### Authorization
1080
1213
 
1081
- No authorization required
1214
+ [api_key](../README.md#api_key)
1082
1215
 
1083
1216
  ### HTTP request headers
1084
1217
 
@@ -1098,6 +1231,13 @@ This endpoint creates or update a bank logo. This logo is a mapping between a fi
1098
1231
  ```ruby
1099
1232
  # load the gem
1100
1233
  require 'budgea_client'
1234
+ # setup authorization
1235
+ BudgeaClient.configure do |config|
1236
+ # Configure API key authorization: api_key
1237
+ config.api_key['Authorization'] = 'YOUR API KEY'
1238
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1239
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1240
+ end
1101
1241
 
1102
1242
  api_instance = BudgeaClient::BanksApi.new
1103
1243
 
@@ -1129,7 +1269,7 @@ Name | Type | Description | Notes
1129
1269
 
1130
1270
  ### Authorization
1131
1271
 
1132
- No authorization required
1272
+ [api_key](../README.md#api_key)
1133
1273
 
1134
1274
  ### HTTP request headers
1135
1275
 
@@ -1149,6 +1289,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
1149
1289
  ```ruby
1150
1290
  # load the gem
1151
1291
  require 'budgea_client'
1292
+ # setup authorization
1293
+ BudgeaClient.configure do |config|
1294
+ # Configure API key authorization: api_key
1295
+ config.api_key['Authorization'] = 'YOUR API KEY'
1296
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1297
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1298
+ end
1152
1299
 
1153
1300
  api_instance = BudgeaClient::BanksApi.new
1154
1301
 
@@ -1180,7 +1327,7 @@ Name | Type | Description | Notes
1180
1327
 
1181
1328
  ### Authorization
1182
1329
 
1183
- No authorization required
1330
+ [api_key](../README.md#api_key)
1184
1331
 
1185
1332
  ### HTTP request headers
1186
1333
 
@@ -1200,6 +1347,13 @@ Edit the provided bank
1200
1347
  ```ruby
1201
1348
  # load the gem
1202
1349
  require 'budgea_client'
1350
+ # setup authorization
1351
+ BudgeaClient.configure do |config|
1352
+ # Configure API key authorization: api_key
1353
+ config.api_key['Authorization'] = 'YOUR API KEY'
1354
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1355
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1356
+ end
1203
1357
 
1204
1358
  api_instance = BudgeaClient::BanksApi.new
1205
1359
 
@@ -1237,7 +1391,7 @@ Name | Type | Description | Notes
1237
1391
 
1238
1392
  ### Authorization
1239
1393
 
1240
- No authorization required
1394
+ [api_key](../README.md#api_key)
1241
1395
 
1242
1396
  ### HTTP request headers
1243
1397
 
@@ -1257,6 +1411,13 @@ Send a request to add a new connector<br><br>
1257
1411
  ```ruby
1258
1412
  # load the gem
1259
1413
  require 'budgea_client'
1414
+ # setup authorization
1415
+ BudgeaClient.configure do |config|
1416
+ # Configure API key authorization: api_key
1417
+ config.api_key['Authorization'] = 'YOUR API KEY'
1418
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1419
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1420
+ end
1260
1421
 
1261
1422
  api_instance = BudgeaClient::BanksApi.new
1262
1423
 
@@ -1306,7 +1467,7 @@ Name | Type | Description | Notes
1306
1467
 
1307
1468
  ### Authorization
1308
1469
 
1309
- No authorization required
1470
+ [api_key](../README.md#api_key)
1310
1471
 
1311
1472
  ### HTTP request headers
1312
1473
 
@@ -1326,6 +1487,13 @@ Get number of accounts, connections and users synced between two dates for the g
1326
1487
  ```ruby
1327
1488
  # load the gem
1328
1489
  require 'budgea_client'
1490
+ # setup authorization
1491
+ BudgeaClient.configure do |config|
1492
+ # Configure API key authorization: api_key
1493
+ config.api_key['Authorization'] = 'YOUR API KEY'
1494
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1495
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1496
+ end
1329
1497
 
1330
1498
  api_instance = BudgeaClient::BanksApi.new
1331
1499
 
@@ -1359,7 +1527,7 @@ nil (empty response body)
1359
1527
 
1360
1528
  ### Authorization
1361
1529
 
1362
- No authorization required
1530
+ [api_key](../README.md#api_key)
1363
1531
 
1364
1532
  ### HTTP request headers
1365
1533
 
@@ -1379,6 +1547,13 @@ Get logs about connections.<br><br>
1379
1547
  ```ruby
1380
1548
  # load the gem
1381
1549
  require 'budgea_client'
1550
+ # setup authorization
1551
+ BudgeaClient.configure do |config|
1552
+ # Configure API key authorization: api_key
1553
+ config.api_key['Authorization'] = 'YOUR API KEY'
1554
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1555
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1556
+ end
1382
1557
 
1383
1558
  api_instance = BudgeaClient::BanksApi.new
1384
1559
 
@@ -1427,7 +1602,7 @@ Name | Type | Description | Notes
1427
1602
 
1428
1603
  ### Authorization
1429
1604
 
1430
- No authorization required
1605
+ [api_key](../README.md#api_key)
1431
1606
 
1432
1607
  ### HTTP request headers
1433
1608
 
@@ -1447,6 +1622,13 @@ Get list of connectors
1447
1622
  ```ruby
1448
1623
  # load the gem
1449
1624
  require 'budgea_client'
1625
+ # setup authorization
1626
+ BudgeaClient.configure do |config|
1627
+ # Configure API key authorization: api_key
1628
+ config.api_key['Authorization'] = 'YOUR API KEY'
1629
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1630
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1631
+ end
1450
1632
 
1451
1633
  api_instance = BudgeaClient::BanksApi.new
1452
1634
 
@@ -1475,7 +1657,7 @@ Name | Type | Description | Notes
1475
1657
 
1476
1658
  ### Authorization
1477
1659
 
1478
- No authorization required
1660
+ [api_key](../README.md#api_key)
1479
1661
 
1480
1662
  ### HTTP request headers
1481
1663
 
@@ -1495,6 +1677,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
1495
1677
  ```ruby
1496
1678
  # load the gem
1497
1679
  require 'budgea_client'
1680
+ # setup authorization
1681
+ BudgeaClient.configure do |config|
1682
+ # Configure API key authorization: api_key
1683
+ config.api_key['Authorization'] = 'YOUR API KEY'
1684
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1685
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1686
+ end
1498
1687
 
1499
1688
  api_instance = BudgeaClient::BanksApi.new
1500
1689
 
@@ -1526,7 +1715,7 @@ Name | Type | Description | Notes
1526
1715
 
1527
1716
  ### Authorization
1528
1717
 
1529
- No authorization required
1718
+ [api_key](../README.md#api_key)
1530
1719
 
1531
1720
  ### HTTP request headers
1532
1721
 
@@ -1546,6 +1735,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
1546
1735
  ```ruby
1547
1736
  # load the gem
1548
1737
  require 'budgea_client'
1738
+ # setup authorization
1739
+ BudgeaClient.configure do |config|
1740
+ # Configure API key authorization: api_key
1741
+ config.api_key['Authorization'] = 'YOUR API KEY'
1742
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1743
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1744
+ end
1549
1745
 
1550
1746
  api_instance = BudgeaClient::BanksApi.new
1551
1747
 
@@ -1577,7 +1773,7 @@ Name | Type | Description | Notes
1577
1773
 
1578
1774
  ### Authorization
1579
1775
 
1580
- No authorization required
1776
+ [api_key](../README.md#api_key)
1581
1777
 
1582
1778
  ### HTTP request headers
1583
1779
 
@@ -1597,6 +1793,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
1597
1793
  ```ruby
1598
1794
  # load the gem
1599
1795
  require 'budgea_client'
1796
+ # setup authorization
1797
+ BudgeaClient.configure do |config|
1798
+ # Configure API key authorization: api_key
1799
+ config.api_key['Authorization'] = 'YOUR API KEY'
1800
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1801
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1802
+ end
1600
1803
 
1601
1804
  api_instance = BudgeaClient::BanksApi.new
1602
1805
 
@@ -1628,7 +1831,7 @@ Name | Type | Description | Notes
1628
1831
 
1629
1832
  ### Authorization
1630
1833
 
1631
- No authorization required
1834
+ [api_key](../README.md#api_key)
1632
1835
 
1633
1836
  ### HTTP request headers
1634
1837
 
@@ -1648,6 +1851,13 @@ Get account types
1648
1851
  ```ruby
1649
1852
  # load the gem
1650
1853
  require 'budgea_client'
1854
+ # setup authorization
1855
+ BudgeaClient.configure do |config|
1856
+ # Configure API key authorization: api_key
1857
+ config.api_key['Authorization'] = 'YOUR API KEY'
1858
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1859
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1860
+ end
1651
1861
 
1652
1862
  api_instance = BudgeaClient::BanksApi.new
1653
1863
 
@@ -1679,7 +1889,7 @@ Name | Type | Description | Notes
1679
1889
 
1680
1890
  ### Authorization
1681
1891
 
1682
- No authorization required
1892
+ [api_key](../README.md#api_key)
1683
1893
 
1684
1894
  ### HTTP request headers
1685
1895
 
@@ -1699,6 +1909,13 @@ Get an account type
1699
1909
  ```ruby
1700
1910
  # load the gem
1701
1911
  require 'budgea_client'
1912
+ # setup authorization
1913
+ BudgeaClient.configure do |config|
1914
+ # Configure API key authorization: api_key
1915
+ config.api_key['Authorization'] = 'YOUR API KEY'
1916
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1917
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1918
+ end
1702
1919
 
1703
1920
  api_instance = BudgeaClient::BanksApi.new
1704
1921
 
@@ -1733,7 +1950,7 @@ Name | Type | Description | Notes
1733
1950
 
1734
1951
  ### Authorization
1735
1952
 
1736
- No authorization required
1953
+ [api_key](../README.md#api_key)
1737
1954
 
1738
1955
  ### HTTP request headers
1739
1956
 
@@ -1753,6 +1970,13 @@ Delete all accounts
1753
1970
  ```ruby
1754
1971
  # load the gem
1755
1972
  require 'budgea_client'
1973
+ # setup authorization
1974
+ BudgeaClient.configure do |config|
1975
+ # Configure API key authorization: api_key
1976
+ config.api_key['Authorization'] = 'YOUR API KEY'
1977
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1978
+ #config.api_key_prefix['Authorization'] = 'Bearer'
1979
+ end
1756
1980
 
1757
1981
  api_instance = BudgeaClient::BanksApi.new
1758
1982
 
@@ -1784,7 +2008,7 @@ Name | Type | Description | Notes
1784
2008
 
1785
2009
  ### Authorization
1786
2010
 
1787
- No authorization required
2011
+ [api_key](../README.md#api_key)
1788
2012
 
1789
2013
  ### HTTP request headers
1790
2014
 
@@ -1804,6 +2028,13 @@ Get accounts list.
1804
2028
  ```ruby
1805
2029
  # load the gem
1806
2030
  require 'budgea_client'
2031
+ # setup authorization
2032
+ BudgeaClient.configure do |config|
2033
+ # Configure API key authorization: api_key
2034
+ config.api_key['Authorization'] = 'YOUR API KEY'
2035
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2036
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2037
+ end
1807
2038
 
1808
2039
  api_instance = BudgeaClient::BanksApi.new
1809
2040
 
@@ -1835,7 +2066,7 @@ Name | Type | Description | Notes
1835
2066
 
1836
2067
  ### Authorization
1837
2068
 
1838
- No authorization required
2069
+ [api_key](../README.md#api_key)
1839
2070
 
1840
2071
  ### HTTP request headers
1841
2072
 
@@ -1855,6 +2086,13 @@ Ressource to get categories for the user's transactions<br><br>
1855
2086
  ```ruby
1856
2087
  # load the gem
1857
2088
  require 'budgea_client'
2089
+ # setup authorization
2090
+ BudgeaClient.configure do |config|
2091
+ # Configure API key authorization: api_key
2092
+ config.api_key['Authorization'] = 'YOUR API KEY'
2093
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2094
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2095
+ end
1858
2096
 
1859
2097
  api_instance = BudgeaClient::BanksApi.new
1860
2098
 
@@ -1884,7 +2122,7 @@ nil (empty response body)
1884
2122
 
1885
2123
  ### Authorization
1886
2124
 
1887
- No authorization required
2125
+ [api_key](../README.md#api_key)
1888
2126
 
1889
2127
  ### HTTP request headers
1890
2128
 
@@ -1904,6 +2142,13 @@ It deletes a specific account. If this is the last synced account of a connectio
1904
2142
  ```ruby
1905
2143
  # load the gem
1906
2144
  require 'budgea_client'
2145
+ # setup authorization
2146
+ BudgeaClient.configure do |config|
2147
+ # Configure API key authorization: api_key
2148
+ config.api_key['Authorization'] = 'YOUR API KEY'
2149
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2150
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2151
+ end
1907
2152
 
1908
2153
  api_instance = BudgeaClient::BanksApi.new
1909
2154
 
@@ -1938,7 +2183,7 @@ Name | Type | Description | Notes
1938
2183
 
1939
2184
  ### Authorization
1940
2185
 
1941
- No authorization required
2186
+ [api_key](../README.md#api_key)
1942
2187
 
1943
2188
  ### HTTP request headers
1944
2189
 
@@ -1958,6 +2203,13 @@ Get account delta between sums of transactions and difference of account balance
1958
2203
  ```ruby
1959
2204
  # load the gem
1960
2205
  require 'budgea_client'
2206
+ # setup authorization
2207
+ BudgeaClient.configure do |config|
2208
+ # Configure API key authorization: api_key
2209
+ config.api_key['Authorization'] = 'YOUR API KEY'
2210
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2211
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2212
+ end
1961
2213
 
1962
2214
  api_instance = BudgeaClient::BanksApi.new
1963
2215
 
@@ -1995,7 +2247,7 @@ nil (empty response body)
1995
2247
 
1996
2248
  ### Authorization
1997
2249
 
1998
- No authorization required
2250
+ [api_key](../README.md#api_key)
1999
2251
 
2000
2252
  ### HTTP request headers
2001
2253
 
@@ -2015,6 +2267,13 @@ Get logs of account.<br><br>By default, it selects logs for the last month. You
2015
2267
  ```ruby
2016
2268
  # load the gem
2017
2269
  require 'budgea_client'
2270
+ # setup authorization
2271
+ BudgeaClient.configure do |config|
2272
+ # Configure API key authorization: api_key
2273
+ config.api_key['Authorization'] = 'YOUR API KEY'
2274
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2275
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2276
+ end
2018
2277
 
2019
2278
  api_instance = BudgeaClient::BanksApi.new
2020
2279
 
@@ -2057,7 +2316,7 @@ Name | Type | Description | Notes
2057
2316
 
2058
2317
  ### Authorization
2059
2318
 
2060
- No authorization required
2319
+ [api_key](../README.md#api_key)
2061
2320
 
2062
2321
  ### HTTP request headers
2063
2322
 
@@ -2077,6 +2336,13 @@ It updates a specific account<br><br>
2077
2336
  ```ruby
2078
2337
  # load the gem
2079
2338
  require 'budgea_client'
2339
+ # setup authorization
2340
+ BudgeaClient.configure do |config|
2341
+ # Configure API key authorization: api_key
2342
+ config.api_key['Authorization'] = 'YOUR API KEY'
2343
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2344
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2345
+ end
2080
2346
 
2081
2347
  api_instance = BudgeaClient::BanksApi.new
2082
2348
 
@@ -2123,7 +2389,7 @@ Name | Type | Description | Notes
2123
2389
 
2124
2390
  ### Authorization
2125
2391
 
2126
- No authorization required
2392
+ [api_key](../README.md#api_key)
2127
2393
 
2128
2394
  ### HTTP request headers
2129
2395
 
@@ -2143,6 +2409,13 @@ Delete transactions
2143
2409
  ```ruby
2144
2410
  # load the gem
2145
2411
  require 'budgea_client'
2412
+ # setup authorization
2413
+ BudgeaClient.configure do |config|
2414
+ # Configure API key authorization: api_key
2415
+ config.api_key['Authorization'] = 'YOUR API KEY'
2416
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2417
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2418
+ end
2146
2419
 
2147
2420
  api_instance = BudgeaClient::BanksApi.new
2148
2421
 
@@ -2177,7 +2450,7 @@ Name | Type | Description | Notes
2177
2450
 
2178
2451
  ### Authorization
2179
2452
 
2180
- No authorization required
2453
+ [api_key](../README.md#api_key)
2181
2454
 
2182
2455
  ### HTTP request headers
2183
2456
 
@@ -2197,6 +2470,13 @@ Get list of transactions.<br><br>By default, it selects transactions for the las
2197
2470
  ```ruby
2198
2471
  # load the gem
2199
2472
  require 'budgea_client'
2473
+ # setup authorization
2474
+ BudgeaClient.configure do |config|
2475
+ # Configure API key authorization: api_key
2476
+ config.api_key['Authorization'] = 'YOUR API KEY'
2477
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2478
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2479
+ end
2200
2480
 
2201
2481
  api_instance = BudgeaClient::BanksApi.new
2202
2482
 
@@ -2257,7 +2537,7 @@ Name | Type | Description | Notes
2257
2537
 
2258
2538
  ### Authorization
2259
2539
 
2260
- No authorization required
2540
+ [api_key](../README.md#api_key)
2261
2541
 
2262
2542
  ### HTTP request headers
2263
2543
 
@@ -2277,6 +2557,13 @@ Delete all arbitrary key-value pairs of a transaction
2277
2557
  ```ruby
2278
2558
  # load the gem
2279
2559
  require 'budgea_client'
2560
+ # setup authorization
2561
+ BudgeaClient.configure do |config|
2562
+ # Configure API key authorization: api_key
2563
+ config.api_key['Authorization'] = 'YOUR API KEY'
2564
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2565
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2566
+ end
2280
2567
 
2281
2568
  api_instance = BudgeaClient::BanksApi.new
2282
2569
 
@@ -2314,7 +2601,7 @@ Name | Type | Description | Notes
2314
2601
 
2315
2602
  ### Authorization
2316
2603
 
2317
- No authorization required
2604
+ [api_key](../README.md#api_key)
2318
2605
 
2319
2606
  ### HTTP request headers
2320
2607
 
@@ -2334,6 +2621,13 @@ List all arbitrary key-value pairs on a transaction
2334
2621
  ```ruby
2335
2622
  # load the gem
2336
2623
  require 'budgea_client'
2624
+ # setup authorization
2625
+ BudgeaClient.configure do |config|
2626
+ # Configure API key authorization: api_key
2627
+ config.api_key['Authorization'] = 'YOUR API KEY'
2628
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2629
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2630
+ end
2337
2631
 
2338
2632
  api_instance = BudgeaClient::BanksApi.new
2339
2633
 
@@ -2371,7 +2665,7 @@ Name | Type | Description | Notes
2371
2665
 
2372
2666
  ### Authorization
2373
2667
 
2374
- No authorization required
2668
+ [api_key](../README.md#api_key)
2375
2669
 
2376
2670
  ### HTTP request headers
2377
2671
 
@@ -2391,6 +2685,13 @@ Delete a particular key-value pair on a transaction.
2391
2685
  ```ruby
2392
2686
  # load the gem
2393
2687
  require 'budgea_client'
2688
+ # setup authorization
2689
+ BudgeaClient.configure do |config|
2690
+ # Configure API key authorization: api_key
2691
+ config.api_key['Authorization'] = 'YOUR API KEY'
2692
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2693
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2694
+ end
2394
2695
 
2395
2696
  api_instance = BudgeaClient::BanksApi.new
2396
2697
 
@@ -2431,7 +2732,7 @@ Name | Type | Description | Notes
2431
2732
 
2432
2733
  ### Authorization
2433
2734
 
2434
- No authorization required
2735
+ [api_key](../README.md#api_key)
2435
2736
 
2436
2737
  ### HTTP request headers
2437
2738
 
@@ -2451,6 +2752,13 @@ Get a particular arbitrary key-value pair on a transaction
2451
2752
  ```ruby
2452
2753
  # load the gem
2453
2754
  require 'budgea_client'
2755
+ # setup authorization
2756
+ BudgeaClient.configure do |config|
2757
+ # Configure API key authorization: api_key
2758
+ config.api_key['Authorization'] = 'YOUR API KEY'
2759
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2760
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2761
+ end
2454
2762
 
2455
2763
  api_instance = BudgeaClient::BanksApi.new
2456
2764
 
@@ -2491,7 +2799,7 @@ Name | Type | Description | Notes
2491
2799
 
2492
2800
  ### Authorization
2493
2801
 
2494
- No authorization required
2802
+ [api_key](../README.md#api_key)
2495
2803
 
2496
2804
  ### HTTP request headers
2497
2805
 
@@ -2511,6 +2819,13 @@ Add or edit transaction arbitrary key-value pairs
2511
2819
  ```ruby
2512
2820
  # load the gem
2513
2821
  require 'budgea_client'
2822
+ # setup authorization
2823
+ BudgeaClient.configure do |config|
2824
+ # Configure API key authorization: api_key
2825
+ config.api_key['Authorization'] = 'YOUR API KEY'
2826
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2827
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2828
+ end
2514
2829
 
2515
2830
  api_instance = BudgeaClient::BanksApi.new
2516
2831
 
@@ -2548,7 +2863,7 @@ Name | Type | Description | Notes
2548
2863
 
2549
2864
  ### Authorization
2550
2865
 
2551
- No authorization required
2866
+ [api_key](../README.md#api_key)
2552
2867
 
2553
2868
  ### HTTP request headers
2554
2869
 
@@ -2568,6 +2883,13 @@ Edit a transaction meta-data
2568
2883
  ```ruby
2569
2884
  # load the gem
2570
2885
  require 'budgea_client'
2886
+ # setup authorization
2887
+ BudgeaClient.configure do |config|
2888
+ # Configure API key authorization: api_key
2889
+ config.api_key['Authorization'] = 'YOUR API KEY'
2890
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2891
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2892
+ end
2571
2893
 
2572
2894
  api_instance = BudgeaClient::BanksApi.new
2573
2895
 
@@ -2615,7 +2937,7 @@ Name | Type | Description | Notes
2615
2937
 
2616
2938
  ### Authorization
2617
2939
 
2618
- No authorization required
2940
+ [api_key](../README.md#api_key)
2619
2941
 
2620
2942
  ### HTTP request headers
2621
2943
 
@@ -2635,6 +2957,13 @@ Create transactions for the supplied account or the account whose id is given wi
2635
2957
  ```ruby
2636
2958
  # load the gem
2637
2959
  require 'budgea_client'
2960
+ # setup authorization
2961
+ BudgeaClient.configure do |config|
2962
+ # Configure API key authorization: api_key
2963
+ config.api_key['Authorization'] = 'YOUR API KEY'
2964
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2965
+ #config.api_key_prefix['Authorization'] = 'Bearer'
2966
+ end
2638
2967
 
2639
2968
  api_instance = BudgeaClient::BanksApi.new
2640
2969
 
@@ -2692,7 +3021,7 @@ Name | Type | Description | Notes
2692
3021
 
2693
3022
  ### Authorization
2694
3023
 
2695
- No authorization required
3024
+ [api_key](../README.md#api_key)
2696
3025
 
2697
3026
  ### HTTP request headers
2698
3027
 
@@ -2712,6 +3041,13 @@ Get clustered transactions
2712
3041
  ```ruby
2713
3042
  # load the gem
2714
3043
  require 'budgea_client'
3044
+ # setup authorization
3045
+ BudgeaClient.configure do |config|
3046
+ # Configure API key authorization: api_key
3047
+ config.api_key['Authorization'] = 'YOUR API KEY'
3048
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3049
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3050
+ end
2715
3051
 
2716
3052
  api_instance = BudgeaClient::BanksApi.new
2717
3053
 
@@ -2746,7 +3082,7 @@ Name | Type | Description | Notes
2746
3082
 
2747
3083
  ### Authorization
2748
3084
 
2749
- No authorization required
3085
+ [api_key](../README.md#api_key)
2750
3086
 
2751
3087
  ### HTTP request headers
2752
3088
 
@@ -2766,6 +3102,13 @@ Delete a clustered transaction
2766
3102
  ```ruby
2767
3103
  # load the gem
2768
3104
  require 'budgea_client'
3105
+ # setup authorization
3106
+ BudgeaClient.configure do |config|
3107
+ # Configure API key authorization: api_key
3108
+ config.api_key['Authorization'] = 'YOUR API KEY'
3109
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3110
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3111
+ end
2769
3112
 
2770
3113
  api_instance = BudgeaClient::BanksApi.new
2771
3114
 
@@ -2803,7 +3146,7 @@ Name | Type | Description | Notes
2803
3146
 
2804
3147
  ### Authorization
2805
3148
 
2806
- No authorization required
3149
+ [api_key](../README.md#api_key)
2807
3150
 
2808
3151
  ### HTTP request headers
2809
3152
 
@@ -2823,6 +3166,13 @@ Form params : - next_date (date): Date of transaction - mean_amount (decimal): M
2823
3166
  ```ruby
2824
3167
  # load the gem
2825
3168
  require 'budgea_client'
3169
+ # setup authorization
3170
+ BudgeaClient.configure do |config|
3171
+ # Configure API key authorization: api_key
3172
+ config.api_key['Authorization'] = 'YOUR API KEY'
3173
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3174
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3175
+ end
2826
3176
 
2827
3177
  api_instance = BudgeaClient::BanksApi.new
2828
3178
 
@@ -2860,7 +3210,7 @@ Name | Type | Description | Notes
2860
3210
 
2861
3211
  ### Authorization
2862
3212
 
2863
- No authorization required
3213
+ [api_key](../README.md#api_key)
2864
3214
 
2865
3215
  ### HTTP request headers
2866
3216
 
@@ -2880,6 +3230,13 @@ Form params : - next_date (date) required: Date of transaction - mean_amount (de
2880
3230
  ```ruby
2881
3231
  # load the gem
2882
3232
  require 'budgea_client'
3233
+ # setup authorization
3234
+ BudgeaClient.configure do |config|
3235
+ # Configure API key authorization: api_key
3236
+ config.api_key['Authorization'] = 'YOUR API KEY'
3237
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3238
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3239
+ end
2883
3240
 
2884
3241
  api_instance = BudgeaClient::BanksApi.new
2885
3242
 
@@ -2914,7 +3271,7 @@ Name | Type | Description | Notes
2914
3271
 
2915
3272
  ### Authorization
2916
3273
 
2917
- No authorization required
3274
+ [api_key](../README.md#api_key)
2918
3275
 
2919
3276
  ### HTTP request headers
2920
3277
 
@@ -2934,6 +3291,13 @@ This endpoint creates an account not related to a connection.<br><br>
2934
3291
  ```ruby
2935
3292
  # load the gem
2936
3293
  require 'budgea_client'
3294
+ # setup authorization
3295
+ BudgeaClient.configure do |config|
3296
+ # Configure API key authorization: api_key
3297
+ config.api_key['Authorization'] = 'YOUR API KEY'
3298
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3299
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3300
+ end
2937
3301
 
2938
3302
  api_instance = BudgeaClient::BanksApi.new
2939
3303
 
@@ -2977,7 +3341,7 @@ Name | Type | Description | Notes
2977
3341
 
2978
3342
  ### Authorization
2979
3343
 
2980
- No authorization required
3344
+ [api_key](../README.md#api_key)
2981
3345
 
2982
3346
  ### HTTP request headers
2983
3347
 
@@ -2997,6 +3361,13 @@ Get alerts
2997
3361
  ```ruby
2998
3362
  # load the gem
2999
3363
  require 'budgea_client'
3364
+ # setup authorization
3365
+ BudgeaClient.configure do |config|
3366
+ # Configure API key authorization: api_key
3367
+ config.api_key['Authorization'] = 'YOUR API KEY'
3368
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3369
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3370
+ end
3000
3371
 
3001
3372
  api_instance = BudgeaClient::BanksApi.new
3002
3373
 
@@ -3028,7 +3399,7 @@ Name | Type | Description | Notes
3028
3399
 
3029
3400
  ### Authorization
3030
3401
 
3031
- No authorization required
3402
+ [api_key](../README.md#api_key)
3032
3403
 
3033
3404
  ### HTTP request headers
3034
3405
 
@@ -3048,6 +3419,13 @@ Ressource to get categories<br><br>
3048
3419
  ```ruby
3049
3420
  # load the gem
3050
3421
  require 'budgea_client'
3422
+ # setup authorization
3423
+ BudgeaClient.configure do |config|
3424
+ # Configure API key authorization: api_key
3425
+ config.api_key['Authorization'] = 'YOUR API KEY'
3426
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3427
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3428
+ end
3051
3429
 
3052
3430
  api_instance = BudgeaClient::BanksApi.new
3053
3431
 
@@ -3079,7 +3457,7 @@ Name | Type | Description | Notes
3079
3457
 
3080
3458
  ### Authorization
3081
3459
 
3082
- No authorization required
3460
+ [api_key](../README.md#api_key)
3083
3461
 
3084
3462
  ### HTTP request headers
3085
3463
 
@@ -3099,6 +3477,13 @@ Ressource to get categories for the user's transactions<br><br>
3099
3477
  ```ruby
3100
3478
  # load the gem
3101
3479
  require 'budgea_client'
3480
+ # setup authorization
3481
+ BudgeaClient.configure do |config|
3482
+ # Configure API key authorization: api_key
3483
+ config.api_key['Authorization'] = 'YOUR API KEY'
3484
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3485
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3486
+ end
3102
3487
 
3103
3488
  api_instance = BudgeaClient::BanksApi.new
3104
3489
 
@@ -3125,7 +3510,7 @@ nil (empty response body)
3125
3510
 
3126
3511
  ### Authorization
3127
3512
 
3128
- No authorization required
3513
+ [api_key](../README.md#api_key)
3129
3514
 
3130
3515
  ### HTTP request headers
3131
3516
 
@@ -3145,6 +3530,13 @@ Delete all connections
3145
3530
  ```ruby
3146
3531
  # load the gem
3147
3532
  require 'budgea_client'
3533
+ # setup authorization
3534
+ BudgeaClient.configure do |config|
3535
+ # Configure API key authorization: api_key
3536
+ config.api_key['Authorization'] = 'YOUR API KEY'
3537
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3538
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3539
+ end
3148
3540
 
3149
3541
  api_instance = BudgeaClient::BanksApi.new
3150
3542
 
@@ -3176,7 +3568,7 @@ Name | Type | Description | Notes
3176
3568
 
3177
3569
  ### Authorization
3178
3570
 
3179
- No authorization required
3571
+ [api_key](../README.md#api_key)
3180
3572
 
3181
3573
  ### HTTP request headers
3182
3574
 
@@ -3196,6 +3588,13 @@ Get connections
3196
3588
  ```ruby
3197
3589
  # load the gem
3198
3590
  require 'budgea_client'
3591
+ # setup authorization
3592
+ BudgeaClient.configure do |config|
3593
+ # Configure API key authorization: api_key
3594
+ config.api_key['Authorization'] = 'YOUR API KEY'
3595
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3596
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3597
+ end
3199
3598
 
3200
3599
  api_instance = BudgeaClient::BanksApi.new
3201
3600
 
@@ -3227,7 +3626,7 @@ Name | Type | Description | Notes
3227
3626
 
3228
3627
  ### Authorization
3229
3628
 
3230
- No authorization required
3629
+ [api_key](../README.md#api_key)
3231
3630
 
3232
3631
  ### HTTP request headers
3233
3632
 
@@ -3247,6 +3646,13 @@ Delete all accounts
3247
3646
  ```ruby
3248
3647
  # load the gem
3249
3648
  require 'budgea_client'
3649
+ # setup authorization
3650
+ BudgeaClient.configure do |config|
3651
+ # Configure API key authorization: api_key
3652
+ config.api_key['Authorization'] = 'YOUR API KEY'
3653
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3654
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3655
+ end
3250
3656
 
3251
3657
  api_instance = BudgeaClient::BanksApi.new
3252
3658
 
@@ -3281,7 +3687,7 @@ Name | Type | Description | Notes
3281
3687
 
3282
3688
  ### Authorization
3283
3689
 
3284
- No authorization required
3690
+ [api_key](../README.md#api_key)
3285
3691
 
3286
3692
  ### HTTP request headers
3287
3693
 
@@ -3301,6 +3707,13 @@ Get accounts list.
3301
3707
  ```ruby
3302
3708
  # load the gem
3303
3709
  require 'budgea_client'
3710
+ # setup authorization
3711
+ BudgeaClient.configure do |config|
3712
+ # Configure API key authorization: api_key
3713
+ config.api_key['Authorization'] = 'YOUR API KEY'
3714
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3715
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3716
+ end
3304
3717
 
3305
3718
  api_instance = BudgeaClient::BanksApi.new
3306
3719
 
@@ -3335,7 +3748,7 @@ Name | Type | Description | Notes
3335
3748
 
3336
3749
  ### Authorization
3337
3750
 
3338
- No authorization required
3751
+ [api_key](../README.md#api_key)
3339
3752
 
3340
3753
  ### HTTP request headers
3341
3754
 
@@ -3355,6 +3768,13 @@ Ressource to get categories for the user's transactions<br><br>
3355
3768
  ```ruby
3356
3769
  # load the gem
3357
3770
  require 'budgea_client'
3771
+ # setup authorization
3772
+ BudgeaClient.configure do |config|
3773
+ # Configure API key authorization: api_key
3774
+ config.api_key['Authorization'] = 'YOUR API KEY'
3775
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3776
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3777
+ end
3358
3778
 
3359
3779
  api_instance = BudgeaClient::BanksApi.new
3360
3780
 
@@ -3387,7 +3807,7 @@ nil (empty response body)
3387
3807
 
3388
3808
  ### Authorization
3389
3809
 
3390
- No authorization required
3810
+ [api_key](../README.md#api_key)
3391
3811
 
3392
3812
  ### HTTP request headers
3393
3813
 
@@ -3407,6 +3827,13 @@ It deletes a specific account. If this is the last synced account of a connectio
3407
3827
  ```ruby
3408
3828
  # load the gem
3409
3829
  require 'budgea_client'
3830
+ # setup authorization
3831
+ BudgeaClient.configure do |config|
3832
+ # Configure API key authorization: api_key
3833
+ config.api_key['Authorization'] = 'YOUR API KEY'
3834
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3835
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3836
+ end
3410
3837
 
3411
3838
  api_instance = BudgeaClient::BanksApi.new
3412
3839
 
@@ -3444,7 +3871,7 @@ Name | Type | Description | Notes
3444
3871
 
3445
3872
  ### Authorization
3446
3873
 
3447
- No authorization required
3874
+ [api_key](../README.md#api_key)
3448
3875
 
3449
3876
  ### HTTP request headers
3450
3877
 
@@ -3464,6 +3891,13 @@ Get account delta between sums of transactions and difference of account balance
3464
3891
  ```ruby
3465
3892
  # load the gem
3466
3893
  require 'budgea_client'
3894
+ # setup authorization
3895
+ BudgeaClient.configure do |config|
3896
+ # Configure API key authorization: api_key
3897
+ config.api_key['Authorization'] = 'YOUR API KEY'
3898
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3899
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3900
+ end
3467
3901
 
3468
3902
  api_instance = BudgeaClient::BanksApi.new
3469
3903
 
@@ -3504,7 +3938,7 @@ nil (empty response body)
3504
3938
 
3505
3939
  ### Authorization
3506
3940
 
3507
- No authorization required
3941
+ [api_key](../README.md#api_key)
3508
3942
 
3509
3943
  ### HTTP request headers
3510
3944
 
@@ -3524,6 +3958,13 @@ Get logs of account.<br><br>By default, it selects logs for the last month. You
3524
3958
  ```ruby
3525
3959
  # load the gem
3526
3960
  require 'budgea_client'
3961
+ # setup authorization
3962
+ BudgeaClient.configure do |config|
3963
+ # Configure API key authorization: api_key
3964
+ config.api_key['Authorization'] = 'YOUR API KEY'
3965
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3966
+ #config.api_key_prefix['Authorization'] = 'Bearer'
3967
+ end
3527
3968
 
3528
3969
  api_instance = BudgeaClient::BanksApi.new
3529
3970
 
@@ -3569,7 +4010,7 @@ Name | Type | Description | Notes
3569
4010
 
3570
4011
  ### Authorization
3571
4012
 
3572
- No authorization required
4013
+ [api_key](../README.md#api_key)
3573
4014
 
3574
4015
  ### HTTP request headers
3575
4016
 
@@ -3589,6 +4030,13 @@ It updates a specific account<br><br>
3589
4030
  ```ruby
3590
4031
  # load the gem
3591
4032
  require 'budgea_client'
4033
+ # setup authorization
4034
+ BudgeaClient.configure do |config|
4035
+ # Configure API key authorization: api_key
4036
+ config.api_key['Authorization'] = 'YOUR API KEY'
4037
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4038
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4039
+ end
3592
4040
 
3593
4041
  api_instance = BudgeaClient::BanksApi.new
3594
4042
 
@@ -3638,7 +4086,7 @@ Name | Type | Description | Notes
3638
4086
 
3639
4087
  ### Authorization
3640
4088
 
3641
- No authorization required
4089
+ [api_key](../README.md#api_key)
3642
4090
 
3643
4091
  ### HTTP request headers
3644
4092
 
@@ -3658,6 +4106,13 @@ Delete transactions
3658
4106
  ```ruby
3659
4107
  # load the gem
3660
4108
  require 'budgea_client'
4109
+ # setup authorization
4110
+ BudgeaClient.configure do |config|
4111
+ # Configure API key authorization: api_key
4112
+ config.api_key['Authorization'] = 'YOUR API KEY'
4113
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4114
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4115
+ end
3661
4116
 
3662
4117
  api_instance = BudgeaClient::BanksApi.new
3663
4118
 
@@ -3695,7 +4150,7 @@ Name | Type | Description | Notes
3695
4150
 
3696
4151
  ### Authorization
3697
4152
 
3698
- No authorization required
4153
+ [api_key](../README.md#api_key)
3699
4154
 
3700
4155
  ### HTTP request headers
3701
4156
 
@@ -3715,6 +4170,13 @@ Get list of transactions.<br><br>By default, it selects transactions for the las
3715
4170
  ```ruby
3716
4171
  # load the gem
3717
4172
  require 'budgea_client'
4173
+ # setup authorization
4174
+ BudgeaClient.configure do |config|
4175
+ # Configure API key authorization: api_key
4176
+ config.api_key['Authorization'] = 'YOUR API KEY'
4177
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4178
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4179
+ end
3718
4180
 
3719
4181
  api_instance = BudgeaClient::BanksApi.new
3720
4182
 
@@ -3778,7 +4240,7 @@ Name | Type | Description | Notes
3778
4240
 
3779
4241
  ### Authorization
3780
4242
 
3781
- No authorization required
4243
+ [api_key](../README.md#api_key)
3782
4244
 
3783
4245
  ### HTTP request headers
3784
4246
 
@@ -3798,6 +4260,13 @@ Delete all arbitrary key-value pairs of a transaction
3798
4260
  ```ruby
3799
4261
  # load the gem
3800
4262
  require 'budgea_client'
4263
+ # setup authorization
4264
+ BudgeaClient.configure do |config|
4265
+ # Configure API key authorization: api_key
4266
+ config.api_key['Authorization'] = 'YOUR API KEY'
4267
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4268
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4269
+ end
3801
4270
 
3802
4271
  api_instance = BudgeaClient::BanksApi.new
3803
4272
 
@@ -3838,7 +4307,7 @@ Name | Type | Description | Notes
3838
4307
 
3839
4308
  ### Authorization
3840
4309
 
3841
- No authorization required
4310
+ [api_key](../README.md#api_key)
3842
4311
 
3843
4312
  ### HTTP request headers
3844
4313
 
@@ -3858,6 +4327,13 @@ List all arbitrary key-value pairs on a transaction
3858
4327
  ```ruby
3859
4328
  # load the gem
3860
4329
  require 'budgea_client'
4330
+ # setup authorization
4331
+ BudgeaClient.configure do |config|
4332
+ # Configure API key authorization: api_key
4333
+ config.api_key['Authorization'] = 'YOUR API KEY'
4334
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4335
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4336
+ end
3861
4337
 
3862
4338
  api_instance = BudgeaClient::BanksApi.new
3863
4339
 
@@ -3898,7 +4374,7 @@ Name | Type | Description | Notes
3898
4374
 
3899
4375
  ### Authorization
3900
4376
 
3901
- No authorization required
4377
+ [api_key](../README.md#api_key)
3902
4378
 
3903
4379
  ### HTTP request headers
3904
4380
 
@@ -3918,6 +4394,13 @@ Delete a particular key-value pair on a transaction.
3918
4394
  ```ruby
3919
4395
  # load the gem
3920
4396
  require 'budgea_client'
4397
+ # setup authorization
4398
+ BudgeaClient.configure do |config|
4399
+ # Configure API key authorization: api_key
4400
+ config.api_key['Authorization'] = 'YOUR API KEY'
4401
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4402
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4403
+ end
3921
4404
 
3922
4405
  api_instance = BudgeaClient::BanksApi.new
3923
4406
 
@@ -3961,7 +4444,7 @@ Name | Type | Description | Notes
3961
4444
 
3962
4445
  ### Authorization
3963
4446
 
3964
- No authorization required
4447
+ [api_key](../README.md#api_key)
3965
4448
 
3966
4449
  ### HTTP request headers
3967
4450
 
@@ -3981,6 +4464,13 @@ Get a particular arbitrary key-value pair on a transaction
3981
4464
  ```ruby
3982
4465
  # load the gem
3983
4466
  require 'budgea_client'
4467
+ # setup authorization
4468
+ BudgeaClient.configure do |config|
4469
+ # Configure API key authorization: api_key
4470
+ config.api_key['Authorization'] = 'YOUR API KEY'
4471
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4472
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4473
+ end
3984
4474
 
3985
4475
  api_instance = BudgeaClient::BanksApi.new
3986
4476
 
@@ -4024,7 +4514,7 @@ Name | Type | Description | Notes
4024
4514
 
4025
4515
  ### Authorization
4026
4516
 
4027
- No authorization required
4517
+ [api_key](../README.md#api_key)
4028
4518
 
4029
4519
  ### HTTP request headers
4030
4520
 
@@ -4044,6 +4534,13 @@ Add or edit transaction arbitrary key-value pairs
4044
4534
  ```ruby
4045
4535
  # load the gem
4046
4536
  require 'budgea_client'
4537
+ # setup authorization
4538
+ BudgeaClient.configure do |config|
4539
+ # Configure API key authorization: api_key
4540
+ config.api_key['Authorization'] = 'YOUR API KEY'
4541
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4542
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4543
+ end
4047
4544
 
4048
4545
  api_instance = BudgeaClient::BanksApi.new
4049
4546
 
@@ -4084,7 +4581,7 @@ Name | Type | Description | Notes
4084
4581
 
4085
4582
  ### Authorization
4086
4583
 
4087
- No authorization required
4584
+ [api_key](../README.md#api_key)
4088
4585
 
4089
4586
  ### HTTP request headers
4090
4587
 
@@ -4104,6 +4601,13 @@ Edit a transaction meta-data
4104
4601
  ```ruby
4105
4602
  # load the gem
4106
4603
  require 'budgea_client'
4604
+ # setup authorization
4605
+ BudgeaClient.configure do |config|
4606
+ # Configure API key authorization: api_key
4607
+ config.api_key['Authorization'] = 'YOUR API KEY'
4608
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4609
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4610
+ end
4107
4611
 
4108
4612
  api_instance = BudgeaClient::BanksApi.new
4109
4613
 
@@ -4154,7 +4658,7 @@ Name | Type | Description | Notes
4154
4658
 
4155
4659
  ### Authorization
4156
4660
 
4157
- No authorization required
4661
+ [api_key](../README.md#api_key)
4158
4662
 
4159
4663
  ### HTTP request headers
4160
4664
 
@@ -4174,6 +4678,13 @@ Create transactions for the supplied account or the account whose id is given wi
4174
4678
  ```ruby
4175
4679
  # load the gem
4176
4680
  require 'budgea_client'
4681
+ # setup authorization
4682
+ BudgeaClient.configure do |config|
4683
+ # Configure API key authorization: api_key
4684
+ config.api_key['Authorization'] = 'YOUR API KEY'
4685
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4686
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4687
+ end
4177
4688
 
4178
4689
  api_instance = BudgeaClient::BanksApi.new
4179
4690
 
@@ -4234,7 +4745,7 @@ Name | Type | Description | Notes
4234
4745
 
4235
4746
  ### Authorization
4236
4747
 
4237
- No authorization required
4748
+ [api_key](../README.md#api_key)
4238
4749
 
4239
4750
  ### HTTP request headers
4240
4751
 
@@ -4254,6 +4765,13 @@ Get clustered transactions
4254
4765
  ```ruby
4255
4766
  # load the gem
4256
4767
  require 'budgea_client'
4768
+ # setup authorization
4769
+ BudgeaClient.configure do |config|
4770
+ # Configure API key authorization: api_key
4771
+ config.api_key['Authorization'] = 'YOUR API KEY'
4772
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4773
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4774
+ end
4257
4775
 
4258
4776
  api_instance = BudgeaClient::BanksApi.new
4259
4777
 
@@ -4291,7 +4809,7 @@ Name | Type | Description | Notes
4291
4809
 
4292
4810
  ### Authorization
4293
4811
 
4294
- No authorization required
4812
+ [api_key](../README.md#api_key)
4295
4813
 
4296
4814
  ### HTTP request headers
4297
4815
 
@@ -4311,6 +4829,13 @@ Delete a clustered transaction
4311
4829
  ```ruby
4312
4830
  # load the gem
4313
4831
  require 'budgea_client'
4832
+ # setup authorization
4833
+ BudgeaClient.configure do |config|
4834
+ # Configure API key authorization: api_key
4835
+ config.api_key['Authorization'] = 'YOUR API KEY'
4836
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4837
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4838
+ end
4314
4839
 
4315
4840
  api_instance = BudgeaClient::BanksApi.new
4316
4841
 
@@ -4351,7 +4876,7 @@ Name | Type | Description | Notes
4351
4876
 
4352
4877
  ### Authorization
4353
4878
 
4354
- No authorization required
4879
+ [api_key](../README.md#api_key)
4355
4880
 
4356
4881
  ### HTTP request headers
4357
4882
 
@@ -4371,6 +4896,13 @@ Form params : - next_date (date): Date of transaction - mean_amount (decimal): M
4371
4896
  ```ruby
4372
4897
  # load the gem
4373
4898
  require 'budgea_client'
4899
+ # setup authorization
4900
+ BudgeaClient.configure do |config|
4901
+ # Configure API key authorization: api_key
4902
+ config.api_key['Authorization'] = 'YOUR API KEY'
4903
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4904
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4905
+ end
4374
4906
 
4375
4907
  api_instance = BudgeaClient::BanksApi.new
4376
4908
 
@@ -4411,7 +4943,7 @@ Name | Type | Description | Notes
4411
4943
 
4412
4944
  ### Authorization
4413
4945
 
4414
- No authorization required
4946
+ [api_key](../README.md#api_key)
4415
4947
 
4416
4948
  ### HTTP request headers
4417
4949
 
@@ -4431,6 +4963,13 @@ Form params : - next_date (date) required: Date of transaction - mean_amount (de
4431
4963
  ```ruby
4432
4964
  # load the gem
4433
4965
  require 'budgea_client'
4966
+ # setup authorization
4967
+ BudgeaClient.configure do |config|
4968
+ # Configure API key authorization: api_key
4969
+ config.api_key['Authorization'] = 'YOUR API KEY'
4970
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
4971
+ #config.api_key_prefix['Authorization'] = 'Bearer'
4972
+ end
4434
4973
 
4435
4974
  api_instance = BudgeaClient::BanksApi.new
4436
4975
 
@@ -4468,7 +5007,7 @@ Name | Type | Description | Notes
4468
5007
 
4469
5008
  ### Authorization
4470
5009
 
4471
- No authorization required
5010
+ [api_key](../README.md#api_key)
4472
5011
 
4473
5012
  ### HTTP request headers
4474
5013
 
@@ -4488,6 +5027,13 @@ This endpoint creates an account not related to a connection.<br><br>
4488
5027
  ```ruby
4489
5028
  # load the gem
4490
5029
  require 'budgea_client'
5030
+ # setup authorization
5031
+ BudgeaClient.configure do |config|
5032
+ # Configure API key authorization: api_key
5033
+ config.api_key['Authorization'] = 'YOUR API KEY'
5034
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5035
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5036
+ end
4491
5037
 
4492
5038
  api_instance = BudgeaClient::BanksApi.new
4493
5039
 
@@ -4534,7 +5080,7 @@ Name | Type | Description | Notes
4534
5080
 
4535
5081
  ### Authorization
4536
5082
 
4537
- No authorization required
5083
+ [api_key](../README.md#api_key)
4538
5084
 
4539
5085
  ### HTTP request headers
4540
5086
 
@@ -4554,6 +5100,13 @@ This endpoint deletes a connection and all related accounts and transactions.<br
4554
5100
  ```ruby
4555
5101
  # load the gem
4556
5102
  require 'budgea_client'
5103
+ # setup authorization
5104
+ BudgeaClient.configure do |config|
5105
+ # Configure API key authorization: api_key
5106
+ config.api_key['Authorization'] = 'YOUR API KEY'
5107
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5108
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5109
+ end
4557
5110
 
4558
5111
  api_instance = BudgeaClient::BanksApi.new
4559
5112
 
@@ -4588,7 +5141,7 @@ Name | Type | Description | Notes
4588
5141
 
4589
5142
  ### Authorization
4590
5143
 
4591
- No authorization required
5144
+ [api_key](../README.md#api_key)
4592
5145
 
4593
5146
  ### HTTP request headers
4594
5147
 
@@ -4608,6 +5161,13 @@ Get connection additionnal informations
4608
5161
  ```ruby
4609
5162
  # load the gem
4610
5163
  require 'budgea_client'
5164
+ # setup authorization
5165
+ BudgeaClient.configure do |config|
5166
+ # Configure API key authorization: api_key
5167
+ config.api_key['Authorization'] = 'YOUR API KEY'
5168
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5169
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5170
+ end
4611
5171
 
4612
5172
  api_instance = BudgeaClient::BanksApi.new
4613
5173
 
@@ -4642,7 +5202,7 @@ Name | Type | Description | Notes
4642
5202
 
4643
5203
  ### Authorization
4644
5204
 
4645
- No authorization required
5205
+ [api_key](../README.md#api_key)
4646
5206
 
4647
5207
  ### HTTP request headers
4648
5208
 
@@ -4662,6 +5222,13 @@ Get logs about connections.<br><br>
4662
5222
  ```ruby
4663
5223
  # load the gem
4664
5224
  require 'budgea_client'
5225
+ # setup authorization
5226
+ BudgeaClient.configure do |config|
5227
+ # Configure API key authorization: api_key
5228
+ config.api_key['Authorization'] = 'YOUR API KEY'
5229
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5230
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5231
+ end
4665
5232
 
4666
5233
  api_instance = BudgeaClient::BanksApi.new
4667
5234
 
@@ -4716,7 +5283,7 @@ Name | Type | Description | Notes
4716
5283
 
4717
5284
  ### Authorization
4718
5285
 
4719
- No authorization required
5286
+ [api_key](../README.md#api_key)
4720
5287
 
4721
5288
  ### HTTP request headers
4722
5289
 
@@ -4736,6 +5303,13 @@ Give new parameters to change on the configuration of this connection (for examp
4736
5303
  ```ruby
4737
5304
  # load the gem
4738
5305
  require 'budgea_client'
5306
+ # setup authorization
5307
+ BudgeaClient.configure do |config|
5308
+ # Configure API key authorization: api_key
5309
+ config.api_key['Authorization'] = 'YOUR API KEY'
5310
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5311
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5312
+ end
4739
5313
 
4740
5314
  api_instance = BudgeaClient::BanksApi.new
4741
5315
 
@@ -4778,7 +5352,7 @@ Name | Type | Description | Notes
4778
5352
 
4779
5353
  ### Authorization
4780
5354
 
4781
- No authorization required
5355
+ [api_key](../README.md#api_key)
4782
5356
 
4783
5357
  ### HTTP request headers
4784
5358
 
@@ -4798,6 +5372,13 @@ We suggest to pass parameter expand=accounts[transactions] to get all *new* and
4798
5372
  ```ruby
4799
5373
  # load the gem
4800
5374
  require 'budgea_client'
5375
+ # setup authorization
5376
+ BudgeaClient.configure do |config|
5377
+ # Configure API key authorization: api_key
5378
+ config.api_key['Authorization'] = 'YOUR API KEY'
5379
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5380
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5381
+ end
4801
5382
 
4802
5383
  api_instance = BudgeaClient::BanksApi.new
4803
5384
 
@@ -4832,7 +5413,7 @@ Name | Type | Description | Notes
4832
5413
 
4833
5414
  ### Authorization
4834
5415
 
4835
- No authorization required
5416
+ [api_key](../README.md#api_key)
4836
5417
 
4837
5418
  ### HTTP request headers
4838
5419
 
@@ -4852,6 +5433,13 @@ Delete transactions
4852
5433
  ```ruby
4853
5434
  # load the gem
4854
5435
  require 'budgea_client'
5436
+ # setup authorization
5437
+ BudgeaClient.configure do |config|
5438
+ # Configure API key authorization: api_key
5439
+ config.api_key['Authorization'] = 'YOUR API KEY'
5440
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5441
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5442
+ end
4855
5443
 
4856
5444
  api_instance = BudgeaClient::BanksApi.new
4857
5445
 
@@ -4886,7 +5474,7 @@ Name | Type | Description | Notes
4886
5474
 
4887
5475
  ### Authorization
4888
5476
 
4889
- No authorization required
5477
+ [api_key](../README.md#api_key)
4890
5478
 
4891
5479
  ### HTTP request headers
4892
5480
 
@@ -4906,6 +5494,13 @@ Get list of transactions.<br><br>By default, it selects transactions for the las
4906
5494
  ```ruby
4907
5495
  # load the gem
4908
5496
  require 'budgea_client'
5497
+ # setup authorization
5498
+ BudgeaClient.configure do |config|
5499
+ # Configure API key authorization: api_key
5500
+ config.api_key['Authorization'] = 'YOUR API KEY'
5501
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5502
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5503
+ end
4909
5504
 
4910
5505
  api_instance = BudgeaClient::BanksApi.new
4911
5506
 
@@ -4966,7 +5561,7 @@ Name | Type | Description | Notes
4966
5561
 
4967
5562
  ### Authorization
4968
5563
 
4969
- No authorization required
5564
+ [api_key](../README.md#api_key)
4970
5565
 
4971
5566
  ### HTTP request headers
4972
5567
 
@@ -4986,6 +5581,13 @@ Delete all arbitrary key-value pairs of a transaction
4986
5581
  ```ruby
4987
5582
  # load the gem
4988
5583
  require 'budgea_client'
5584
+ # setup authorization
5585
+ BudgeaClient.configure do |config|
5586
+ # Configure API key authorization: api_key
5587
+ config.api_key['Authorization'] = 'YOUR API KEY'
5588
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5589
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5590
+ end
4989
5591
 
4990
5592
  api_instance = BudgeaClient::BanksApi.new
4991
5593
 
@@ -5023,7 +5625,7 @@ Name | Type | Description | Notes
5023
5625
 
5024
5626
  ### Authorization
5025
5627
 
5026
- No authorization required
5628
+ [api_key](../README.md#api_key)
5027
5629
 
5028
5630
  ### HTTP request headers
5029
5631
 
@@ -5043,6 +5645,13 @@ List all arbitrary key-value pairs on a transaction
5043
5645
  ```ruby
5044
5646
  # load the gem
5045
5647
  require 'budgea_client'
5648
+ # setup authorization
5649
+ BudgeaClient.configure do |config|
5650
+ # Configure API key authorization: api_key
5651
+ config.api_key['Authorization'] = 'YOUR API KEY'
5652
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5653
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5654
+ end
5046
5655
 
5047
5656
  api_instance = BudgeaClient::BanksApi.new
5048
5657
 
@@ -5080,7 +5689,7 @@ Name | Type | Description | Notes
5080
5689
 
5081
5690
  ### Authorization
5082
5691
 
5083
- No authorization required
5692
+ [api_key](../README.md#api_key)
5084
5693
 
5085
5694
  ### HTTP request headers
5086
5695
 
@@ -5100,6 +5709,13 @@ Delete a particular key-value pair on a transaction.
5100
5709
  ```ruby
5101
5710
  # load the gem
5102
5711
  require 'budgea_client'
5712
+ # setup authorization
5713
+ BudgeaClient.configure do |config|
5714
+ # Configure API key authorization: api_key
5715
+ config.api_key['Authorization'] = 'YOUR API KEY'
5716
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5717
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5718
+ end
5103
5719
 
5104
5720
  api_instance = BudgeaClient::BanksApi.new
5105
5721
 
@@ -5140,7 +5756,7 @@ Name | Type | Description | Notes
5140
5756
 
5141
5757
  ### Authorization
5142
5758
 
5143
- No authorization required
5759
+ [api_key](../README.md#api_key)
5144
5760
 
5145
5761
  ### HTTP request headers
5146
5762
 
@@ -5160,6 +5776,13 @@ Get a particular arbitrary key-value pair on a transaction
5160
5776
  ```ruby
5161
5777
  # load the gem
5162
5778
  require 'budgea_client'
5779
+ # setup authorization
5780
+ BudgeaClient.configure do |config|
5781
+ # Configure API key authorization: api_key
5782
+ config.api_key['Authorization'] = 'YOUR API KEY'
5783
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5784
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5785
+ end
5163
5786
 
5164
5787
  api_instance = BudgeaClient::BanksApi.new
5165
5788
 
@@ -5200,7 +5823,7 @@ Name | Type | Description | Notes
5200
5823
 
5201
5824
  ### Authorization
5202
5825
 
5203
- No authorization required
5826
+ [api_key](../README.md#api_key)
5204
5827
 
5205
5828
  ### HTTP request headers
5206
5829
 
@@ -5220,6 +5843,13 @@ Add or edit transaction arbitrary key-value pairs
5220
5843
  ```ruby
5221
5844
  # load the gem
5222
5845
  require 'budgea_client'
5846
+ # setup authorization
5847
+ BudgeaClient.configure do |config|
5848
+ # Configure API key authorization: api_key
5849
+ config.api_key['Authorization'] = 'YOUR API KEY'
5850
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5851
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5852
+ end
5223
5853
 
5224
5854
  api_instance = BudgeaClient::BanksApi.new
5225
5855
 
@@ -5257,7 +5887,7 @@ Name | Type | Description | Notes
5257
5887
 
5258
5888
  ### Authorization
5259
5889
 
5260
- No authorization required
5890
+ [api_key](../README.md#api_key)
5261
5891
 
5262
5892
  ### HTTP request headers
5263
5893
 
@@ -5277,6 +5907,13 @@ Edit a transaction meta-data
5277
5907
  ```ruby
5278
5908
  # load the gem
5279
5909
  require 'budgea_client'
5910
+ # setup authorization
5911
+ BudgeaClient.configure do |config|
5912
+ # Configure API key authorization: api_key
5913
+ config.api_key['Authorization'] = 'YOUR API KEY'
5914
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5915
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5916
+ end
5280
5917
 
5281
5918
  api_instance = BudgeaClient::BanksApi.new
5282
5919
 
@@ -5324,7 +5961,7 @@ Name | Type | Description | Notes
5324
5961
 
5325
5962
  ### Authorization
5326
5963
 
5327
- No authorization required
5964
+ [api_key](../README.md#api_key)
5328
5965
 
5329
5966
  ### HTTP request headers
5330
5967
 
@@ -5344,6 +5981,13 @@ Create transactions for the supplied account or the account whose id is given wi
5344
5981
  ```ruby
5345
5982
  # load the gem
5346
5983
  require 'budgea_client'
5984
+ # setup authorization
5985
+ BudgeaClient.configure do |config|
5986
+ # Configure API key authorization: api_key
5987
+ config.api_key['Authorization'] = 'YOUR API KEY'
5988
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
5989
+ #config.api_key_prefix['Authorization'] = 'Bearer'
5990
+ end
5347
5991
 
5348
5992
  api_instance = BudgeaClient::BanksApi.new
5349
5993
 
@@ -5401,7 +6045,7 @@ Name | Type | Description | Notes
5401
6045
 
5402
6046
  ### Authorization
5403
6047
 
5404
- No authorization required
6048
+ [api_key](../README.md#api_key)
5405
6049
 
5406
6050
  ### HTTP request headers
5407
6051
 
@@ -5421,6 +6065,13 @@ Get clustered transactions
5421
6065
  ```ruby
5422
6066
  # load the gem
5423
6067
  require 'budgea_client'
6068
+ # setup authorization
6069
+ BudgeaClient.configure do |config|
6070
+ # Configure API key authorization: api_key
6071
+ config.api_key['Authorization'] = 'YOUR API KEY'
6072
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6073
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6074
+ end
5424
6075
 
5425
6076
  api_instance = BudgeaClient::BanksApi.new
5426
6077
 
@@ -5455,7 +6106,7 @@ Name | Type | Description | Notes
5455
6106
 
5456
6107
  ### Authorization
5457
6108
 
5458
- No authorization required
6109
+ [api_key](../README.md#api_key)
5459
6110
 
5460
6111
  ### HTTP request headers
5461
6112
 
@@ -5475,6 +6126,13 @@ Delete a clustered transaction
5475
6126
  ```ruby
5476
6127
  # load the gem
5477
6128
  require 'budgea_client'
6129
+ # setup authorization
6130
+ BudgeaClient.configure do |config|
6131
+ # Configure API key authorization: api_key
6132
+ config.api_key['Authorization'] = 'YOUR API KEY'
6133
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6134
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6135
+ end
5478
6136
 
5479
6137
  api_instance = BudgeaClient::BanksApi.new
5480
6138
 
@@ -5512,7 +6170,7 @@ Name | Type | Description | Notes
5512
6170
 
5513
6171
  ### Authorization
5514
6172
 
5515
- No authorization required
6173
+ [api_key](../README.md#api_key)
5516
6174
 
5517
6175
  ### HTTP request headers
5518
6176
 
@@ -5532,6 +6190,13 @@ Form params : - next_date (date): Date of transaction - mean_amount (decimal): M
5532
6190
  ```ruby
5533
6191
  # load the gem
5534
6192
  require 'budgea_client'
6193
+ # setup authorization
6194
+ BudgeaClient.configure do |config|
6195
+ # Configure API key authorization: api_key
6196
+ config.api_key['Authorization'] = 'YOUR API KEY'
6197
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6198
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6199
+ end
5535
6200
 
5536
6201
  api_instance = BudgeaClient::BanksApi.new
5537
6202
 
@@ -5569,7 +6234,7 @@ Name | Type | Description | Notes
5569
6234
 
5570
6235
  ### Authorization
5571
6236
 
5572
- No authorization required
6237
+ [api_key](../README.md#api_key)
5573
6238
 
5574
6239
  ### HTTP request headers
5575
6240
 
@@ -5589,6 +6254,13 @@ Form params : - next_date (date) required: Date of transaction - mean_amount (de
5589
6254
  ```ruby
5590
6255
  # load the gem
5591
6256
  require 'budgea_client'
6257
+ # setup authorization
6258
+ BudgeaClient.configure do |config|
6259
+ # Configure API key authorization: api_key
6260
+ config.api_key['Authorization'] = 'YOUR API KEY'
6261
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6262
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6263
+ end
5592
6264
 
5593
6265
  api_instance = BudgeaClient::BanksApi.new
5594
6266
 
@@ -5623,7 +6295,7 @@ Name | Type | Description | Notes
5623
6295
 
5624
6296
  ### Authorization
5625
6297
 
5626
- No authorization required
6298
+ [api_key](../README.md#api_key)
5627
6299
 
5628
6300
  ### HTTP request headers
5629
6301
 
@@ -5643,6 +6315,13 @@ Create a new connection to a given bank or provider. You have to give all needed
5643
6315
  ```ruby
5644
6316
  # load the gem
5645
6317
  require 'budgea_client'
6318
+ # setup authorization
6319
+ BudgeaClient.configure do |config|
6320
+ # Configure API key authorization: api_key
6321
+ config.api_key['Authorization'] = 'YOUR API KEY'
6322
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6323
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6324
+ end
5646
6325
 
5647
6326
  api_instance = BudgeaClient::BanksApi.new
5648
6327
 
@@ -5678,7 +6357,7 @@ Name | Type | Description | Notes
5678
6357
 
5679
6358
  ### Authorization
5680
6359
 
5681
- No authorization required
6360
+ [api_key](../README.md#api_key)
5682
6361
 
5683
6362
  ### HTTP request headers
5684
6363
 
@@ -5698,6 +6377,13 @@ Get forecast
5698
6377
  ```ruby
5699
6378
  # load the gem
5700
6379
  require 'budgea_client'
6380
+ # setup authorization
6381
+ BudgeaClient.configure do |config|
6382
+ # Configure API key authorization: api_key
6383
+ config.api_key['Authorization'] = 'YOUR API KEY'
6384
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6385
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6386
+ end
5701
6387
 
5702
6388
  api_instance = BudgeaClient::BanksApi.new
5703
6389
 
@@ -5724,7 +6410,7 @@ nil (empty response body)
5724
6410
 
5725
6411
  ### Authorization
5726
6412
 
5727
- No authorization required
6413
+ [api_key](../README.md#api_key)
5728
6414
 
5729
6415
  ### HTTP request headers
5730
6416
 
@@ -5744,6 +6430,13 @@ Get logs about connections.<br><br>
5744
6430
  ```ruby
5745
6431
  # load the gem
5746
6432
  require 'budgea_client'
6433
+ # setup authorization
6434
+ BudgeaClient.configure do |config|
6435
+ # Configure API key authorization: api_key
6436
+ config.api_key['Authorization'] = 'YOUR API KEY'
6437
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6438
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6439
+ end
5747
6440
 
5748
6441
  api_instance = BudgeaClient::BanksApi.new
5749
6442
 
@@ -5795,7 +6488,7 @@ Name | Type | Description | Notes
5795
6488
 
5796
6489
  ### Authorization
5797
6490
 
5798
- No authorization required
6491
+ [api_key](../README.md#api_key)
5799
6492
 
5800
6493
  ### HTTP request headers
5801
6494
 
@@ -5815,6 +6508,13 @@ Delete transactions
5815
6508
  ```ruby
5816
6509
  # load the gem
5817
6510
  require 'budgea_client'
6511
+ # setup authorization
6512
+ BudgeaClient.configure do |config|
6513
+ # Configure API key authorization: api_key
6514
+ config.api_key['Authorization'] = 'YOUR API KEY'
6515
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6516
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6517
+ end
5818
6518
 
5819
6519
  api_instance = BudgeaClient::BanksApi.new
5820
6520
 
@@ -5846,7 +6546,7 @@ Name | Type | Description | Notes
5846
6546
 
5847
6547
  ### Authorization
5848
6548
 
5849
- No authorization required
6549
+ [api_key](../README.md#api_key)
5850
6550
 
5851
6551
  ### HTTP request headers
5852
6552
 
@@ -5866,6 +6566,13 @@ Get list of transactions.<br><br>By default, it selects transactions for the las
5866
6566
  ```ruby
5867
6567
  # load the gem
5868
6568
  require 'budgea_client'
6569
+ # setup authorization
6570
+ BudgeaClient.configure do |config|
6571
+ # Configure API key authorization: api_key
6572
+ config.api_key['Authorization'] = 'YOUR API KEY'
6573
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6574
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6575
+ end
5869
6576
 
5870
6577
  api_instance = BudgeaClient::BanksApi.new
5871
6578
 
@@ -5923,7 +6630,7 @@ Name | Type | Description | Notes
5923
6630
 
5924
6631
  ### Authorization
5925
6632
 
5926
- No authorization required
6633
+ [api_key](../README.md#api_key)
5927
6634
 
5928
6635
  ### HTTP request headers
5929
6636
 
@@ -5943,6 +6650,13 @@ Delete all arbitrary key-value pairs of a transaction
5943
6650
  ```ruby
5944
6651
  # load the gem
5945
6652
  require 'budgea_client'
6653
+ # setup authorization
6654
+ BudgeaClient.configure do |config|
6655
+ # Configure API key authorization: api_key
6656
+ config.api_key['Authorization'] = 'YOUR API KEY'
6657
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6658
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6659
+ end
5946
6660
 
5947
6661
  api_instance = BudgeaClient::BanksApi.new
5948
6662
 
@@ -5977,7 +6691,7 @@ Name | Type | Description | Notes
5977
6691
 
5978
6692
  ### Authorization
5979
6693
 
5980
- No authorization required
6694
+ [api_key](../README.md#api_key)
5981
6695
 
5982
6696
  ### HTTP request headers
5983
6697
 
@@ -5997,6 +6711,13 @@ List all arbitrary key-value pairs on a transaction
5997
6711
  ```ruby
5998
6712
  # load the gem
5999
6713
  require 'budgea_client'
6714
+ # setup authorization
6715
+ BudgeaClient.configure do |config|
6716
+ # Configure API key authorization: api_key
6717
+ config.api_key['Authorization'] = 'YOUR API KEY'
6718
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6719
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6720
+ end
6000
6721
 
6001
6722
  api_instance = BudgeaClient::BanksApi.new
6002
6723
 
@@ -6031,7 +6752,7 @@ Name | Type | Description | Notes
6031
6752
 
6032
6753
  ### Authorization
6033
6754
 
6034
- No authorization required
6755
+ [api_key](../README.md#api_key)
6035
6756
 
6036
6757
  ### HTTP request headers
6037
6758
 
@@ -6051,6 +6772,13 @@ Delete a particular key-value pair on a transaction.
6051
6772
  ```ruby
6052
6773
  # load the gem
6053
6774
  require 'budgea_client'
6775
+ # setup authorization
6776
+ BudgeaClient.configure do |config|
6777
+ # Configure API key authorization: api_key
6778
+ config.api_key['Authorization'] = 'YOUR API KEY'
6779
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6780
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6781
+ end
6054
6782
 
6055
6783
  api_instance = BudgeaClient::BanksApi.new
6056
6784
 
@@ -6088,7 +6816,7 @@ Name | Type | Description | Notes
6088
6816
 
6089
6817
  ### Authorization
6090
6818
 
6091
- No authorization required
6819
+ [api_key](../README.md#api_key)
6092
6820
 
6093
6821
  ### HTTP request headers
6094
6822
 
@@ -6108,6 +6836,13 @@ Get a particular arbitrary key-value pair on a transaction
6108
6836
  ```ruby
6109
6837
  # load the gem
6110
6838
  require 'budgea_client'
6839
+ # setup authorization
6840
+ BudgeaClient.configure do |config|
6841
+ # Configure API key authorization: api_key
6842
+ config.api_key['Authorization'] = 'YOUR API KEY'
6843
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6844
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6845
+ end
6111
6846
 
6112
6847
  api_instance = BudgeaClient::BanksApi.new
6113
6848
 
@@ -6145,7 +6880,7 @@ Name | Type | Description | Notes
6145
6880
 
6146
6881
  ### Authorization
6147
6882
 
6148
- No authorization required
6883
+ [api_key](../README.md#api_key)
6149
6884
 
6150
6885
  ### HTTP request headers
6151
6886
 
@@ -6165,6 +6900,13 @@ Add or edit transaction arbitrary key-value pairs
6165
6900
  ```ruby
6166
6901
  # load the gem
6167
6902
  require 'budgea_client'
6903
+ # setup authorization
6904
+ BudgeaClient.configure do |config|
6905
+ # Configure API key authorization: api_key
6906
+ config.api_key['Authorization'] = 'YOUR API KEY'
6907
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6908
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6909
+ end
6168
6910
 
6169
6911
  api_instance = BudgeaClient::BanksApi.new
6170
6912
 
@@ -6199,7 +6941,7 @@ Name | Type | Description | Notes
6199
6941
 
6200
6942
  ### Authorization
6201
6943
 
6202
- No authorization required
6944
+ [api_key](../README.md#api_key)
6203
6945
 
6204
6946
  ### HTTP request headers
6205
6947
 
@@ -6219,6 +6961,13 @@ Edit a transaction meta-data
6219
6961
  ```ruby
6220
6962
  # load the gem
6221
6963
  require 'budgea_client'
6964
+ # setup authorization
6965
+ BudgeaClient.configure do |config|
6966
+ # Configure API key authorization: api_key
6967
+ config.api_key['Authorization'] = 'YOUR API KEY'
6968
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
6969
+ #config.api_key_prefix['Authorization'] = 'Bearer'
6970
+ end
6222
6971
 
6223
6972
  api_instance = BudgeaClient::BanksApi.new
6224
6973
 
@@ -6263,7 +7012,7 @@ Name | Type | Description | Notes
6263
7012
 
6264
7013
  ### Authorization
6265
7014
 
6266
- No authorization required
7015
+ [api_key](../README.md#api_key)
6267
7016
 
6268
7017
  ### HTTP request headers
6269
7018
 
@@ -6283,6 +7032,13 @@ Create transactions for the supplied account or the account whose id is given wi
6283
7032
  ```ruby
6284
7033
  # load the gem
6285
7034
  require 'budgea_client'
7035
+ # setup authorization
7036
+ BudgeaClient.configure do |config|
7037
+ # Configure API key authorization: api_key
7038
+ config.api_key['Authorization'] = 'YOUR API KEY'
7039
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
7040
+ #config.api_key_prefix['Authorization'] = 'Bearer'
7041
+ end
6286
7042
 
6287
7043
  api_instance = BudgeaClient::BanksApi.new
6288
7044
 
@@ -6337,7 +7093,7 @@ Name | Type | Description | Notes
6337
7093
 
6338
7094
  ### Authorization
6339
7095
 
6340
- No authorization required
7096
+ [api_key](../README.md#api_key)
6341
7097
 
6342
7098
  ### HTTP request headers
6343
7099
 
@@ -6357,6 +7113,13 @@ Get clustered transactions
6357
7113
  ```ruby
6358
7114
  # load the gem
6359
7115
  require 'budgea_client'
7116
+ # setup authorization
7117
+ BudgeaClient.configure do |config|
7118
+ # Configure API key authorization: api_key
7119
+ config.api_key['Authorization'] = 'YOUR API KEY'
7120
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
7121
+ #config.api_key_prefix['Authorization'] = 'Bearer'
7122
+ end
6360
7123
 
6361
7124
  api_instance = BudgeaClient::BanksApi.new
6362
7125
 
@@ -6388,7 +7151,7 @@ Name | Type | Description | Notes
6388
7151
 
6389
7152
  ### Authorization
6390
7153
 
6391
- No authorization required
7154
+ [api_key](../README.md#api_key)
6392
7155
 
6393
7156
  ### HTTP request headers
6394
7157
 
@@ -6408,6 +7171,13 @@ Delete a clustered transaction
6408
7171
  ```ruby
6409
7172
  # load the gem
6410
7173
  require 'budgea_client'
7174
+ # setup authorization
7175
+ BudgeaClient.configure do |config|
7176
+ # Configure API key authorization: api_key
7177
+ config.api_key['Authorization'] = 'YOUR API KEY'
7178
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
7179
+ #config.api_key_prefix['Authorization'] = 'Bearer'
7180
+ end
6411
7181
 
6412
7182
  api_instance = BudgeaClient::BanksApi.new
6413
7183
 
@@ -6442,7 +7212,7 @@ Name | Type | Description | Notes
6442
7212
 
6443
7213
  ### Authorization
6444
7214
 
6445
- No authorization required
7215
+ [api_key](../README.md#api_key)
6446
7216
 
6447
7217
  ### HTTP request headers
6448
7218
 
@@ -6462,6 +7232,13 @@ Form params : - next_date (date): Date of transaction - mean_amount (decimal): M
6462
7232
  ```ruby
6463
7233
  # load the gem
6464
7234
  require 'budgea_client'
7235
+ # setup authorization
7236
+ BudgeaClient.configure do |config|
7237
+ # Configure API key authorization: api_key
7238
+ config.api_key['Authorization'] = 'YOUR API KEY'
7239
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
7240
+ #config.api_key_prefix['Authorization'] = 'Bearer'
7241
+ end
6465
7242
 
6466
7243
  api_instance = BudgeaClient::BanksApi.new
6467
7244
 
@@ -6496,7 +7273,7 @@ Name | Type | Description | Notes
6496
7273
 
6497
7274
  ### Authorization
6498
7275
 
6499
- No authorization required
7276
+ [api_key](../README.md#api_key)
6500
7277
 
6501
7278
  ### HTTP request headers
6502
7279
 
@@ -6516,6 +7293,13 @@ Form params : - next_date (date) required: Date of transaction - mean_amount (de
6516
7293
  ```ruby
6517
7294
  # load the gem
6518
7295
  require 'budgea_client'
7296
+ # setup authorization
7297
+ BudgeaClient.configure do |config|
7298
+ # Configure API key authorization: api_key
7299
+ config.api_key['Authorization'] = 'YOUR API KEY'
7300
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
7301
+ #config.api_key_prefix['Authorization'] = 'Bearer'
7302
+ end
6519
7303
 
6520
7304
  api_instance = BudgeaClient::BanksApi.new
6521
7305
 
@@ -6547,7 +7331,7 @@ Name | Type | Description | Notes
6547
7331
 
6548
7332
  ### Authorization
6549
7333
 
6550
- No authorization required
7334
+ [api_key](../README.md#api_key)
6551
7335
 
6552
7336
  ### HTTP request headers
6553
7337