budgea_client 1.3.6 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +0 -5
- data/Gemfile.lock +3 -23
- data/README.md +14 -1
- data/budgea_openapi.json +12 -0
- data/config.json +2 -1
- data/docs/AdministrationApi.md +144 -18
- data/docs/AuthenticationApi.md +64 -8
- data/docs/BanksApi.md +896 -112
- data/docs/ConnectionsApi.md +128 -16
- data/docs/DocumentsApi.md +608 -76
- data/docs/OCRApi.md +16 -2
- data/docs/OIDCApi.md +24 -3
- data/docs/PFMApi.md +312 -39
- data/docs/ProvidersApi.md +864 -108
- data/docs/RecipientsApi.md +32 -4
- data/docs/TermsApi.md +32 -4
- data/docs/TransfersApi.md +320 -40
- data/docs/UsersManagementApi.md +96 -12
- data/docs/WealthApi.md +112 -14
- data/lib/budgea_client/api/administration_api.rb +18 -18
- data/lib/budgea_client/api/authentication_api.rb +8 -8
- data/lib/budgea_client/api/banks_api.rb +112 -112
- data/lib/budgea_client/api/connections_api.rb +16 -16
- data/lib/budgea_client/api/documents_api.rb +76 -76
- data/lib/budgea_client/api/ocr_api.rb +2 -2
- data/lib/budgea_client/api/oidc_api.rb +3 -3
- data/lib/budgea_client/api/pfm_api.rb +39 -39
- data/lib/budgea_client/api/providers_api.rb +108 -108
- data/lib/budgea_client/api/recipients_api.rb +4 -4
- data/lib/budgea_client/api/terms_api.rb +4 -4
- data/lib/budgea_client/api/transfers_api.rb +40 -40
- data/lib/budgea_client/api/users_management_api.rb +12 -12
- data/lib/budgea_client/api/wealth_api.rb +14 -14
- data/lib/budgea_client/api_client.rb +1 -0
- data/lib/budgea_client/configuration.rb +7 -0
- data/lib/budgea_client/version.rb +1 -1
- metadata +2 -4
- data/pkg/budgea_client-1.3.5.gem +0 -0
- data/pkg/budgea_client-1.3.6.gem +0 -0
data/docs/ProvidersApi.md
CHANGED
@@ -125,6 +125,13 @@ Get list of connectors
|
|
125
125
|
```ruby
|
126
126
|
# load the gem
|
127
127
|
require 'budgea_client'
|
128
|
+
# setup authorization
|
129
|
+
BudgeaClient.configure do |config|
|
130
|
+
# Configure API key authorization: api_key
|
131
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
132
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
133
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
134
|
+
end
|
128
135
|
|
129
136
|
api_instance = BudgeaClient::ProvidersApi.new
|
130
137
|
|
@@ -153,7 +160,7 @@ Name | Type | Description | Notes
|
|
153
160
|
|
154
161
|
### Authorization
|
155
162
|
|
156
|
-
|
163
|
+
[api_key](../README.md#api_key)
|
157
164
|
|
158
165
|
### HTTP request headers
|
159
166
|
|
@@ -173,6 +180,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
173
180
|
```ruby
|
174
181
|
# load the gem
|
175
182
|
require 'budgea_client'
|
183
|
+
# setup authorization
|
184
|
+
BudgeaClient.configure do |config|
|
185
|
+
# Configure API key authorization: api_key
|
186
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
187
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
188
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
189
|
+
end
|
176
190
|
|
177
191
|
api_instance = BudgeaClient::ProvidersApi.new
|
178
192
|
|
@@ -204,7 +218,7 @@ Name | Type | Description | Notes
|
|
204
218
|
|
205
219
|
### Authorization
|
206
220
|
|
207
|
-
|
221
|
+
[api_key](../README.md#api_key)
|
208
222
|
|
209
223
|
### HTTP request headers
|
210
224
|
|
@@ -224,6 +238,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
224
238
|
```ruby
|
225
239
|
# load the gem
|
226
240
|
require 'budgea_client'
|
241
|
+
# setup authorization
|
242
|
+
BudgeaClient.configure do |config|
|
243
|
+
# Configure API key authorization: api_key
|
244
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
245
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
246
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
247
|
+
end
|
227
248
|
|
228
249
|
api_instance = BudgeaClient::ProvidersApi.new
|
229
250
|
|
@@ -255,7 +276,7 @@ Name | Type | Description | Notes
|
|
255
276
|
|
256
277
|
### Authorization
|
257
278
|
|
258
|
-
|
279
|
+
[api_key](../README.md#api_key)
|
259
280
|
|
260
281
|
### HTTP request headers
|
261
282
|
|
@@ -275,6 +296,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
275
296
|
```ruby
|
276
297
|
# load the gem
|
277
298
|
require 'budgea_client'
|
299
|
+
# setup authorization
|
300
|
+
BudgeaClient.configure do |config|
|
301
|
+
# Configure API key authorization: api_key
|
302
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
303
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
304
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
305
|
+
end
|
278
306
|
|
279
307
|
api_instance = BudgeaClient::ProvidersApi.new
|
280
308
|
|
@@ -306,7 +334,7 @@ Name | Type | Description | Notes
|
|
306
334
|
|
307
335
|
### Authorization
|
308
336
|
|
309
|
-
|
337
|
+
[api_key](../README.md#api_key)
|
310
338
|
|
311
339
|
### HTTP request headers
|
312
340
|
|
@@ -326,6 +354,13 @@ Get connections without a user
|
|
326
354
|
```ruby
|
327
355
|
# load the gem
|
328
356
|
require 'budgea_client'
|
357
|
+
# setup authorization
|
358
|
+
BudgeaClient.configure do |config|
|
359
|
+
# Configure API key authorization: api_key
|
360
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
361
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
362
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
363
|
+
end
|
329
364
|
|
330
365
|
api_instance = BudgeaClient::ProvidersApi.new
|
331
366
|
|
@@ -354,7 +389,7 @@ Name | Type | Description | Notes
|
|
354
389
|
|
355
390
|
### Authorization
|
356
391
|
|
357
|
-
|
392
|
+
[api_key](../README.md#api_key)
|
358
393
|
|
359
394
|
### HTTP request headers
|
360
395
|
|
@@ -374,6 +409,13 @@ Get list of connectors
|
|
374
409
|
```ruby
|
375
410
|
# load the gem
|
376
411
|
require 'budgea_client'
|
412
|
+
# setup authorization
|
413
|
+
BudgeaClient.configure do |config|
|
414
|
+
# Configure API key authorization: api_key
|
415
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
416
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
417
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
418
|
+
end
|
377
419
|
|
378
420
|
api_instance = BudgeaClient::ProvidersApi.new
|
379
421
|
|
@@ -402,7 +444,7 @@ Name | Type | Description | Notes
|
|
402
444
|
|
403
445
|
### Authorization
|
404
446
|
|
405
|
-
|
447
|
+
[api_key](../README.md#api_key)
|
406
448
|
|
407
449
|
### HTTP request headers
|
408
450
|
|
@@ -422,6 +464,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
422
464
|
```ruby
|
423
465
|
# load the gem
|
424
466
|
require 'budgea_client'
|
467
|
+
# setup authorization
|
468
|
+
BudgeaClient.configure do |config|
|
469
|
+
# Configure API key authorization: api_key
|
470
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
471
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
472
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
473
|
+
end
|
425
474
|
|
426
475
|
api_instance = BudgeaClient::ProvidersApi.new
|
427
476
|
|
@@ -453,7 +502,7 @@ Name | Type | Description | Notes
|
|
453
502
|
|
454
503
|
### Authorization
|
455
504
|
|
456
|
-
|
505
|
+
[api_key](../README.md#api_key)
|
457
506
|
|
458
507
|
### HTTP request headers
|
459
508
|
|
@@ -473,6 +522,13 @@ Delete a single Logo object.
|
|
473
522
|
```ruby
|
474
523
|
# load the gem
|
475
524
|
require 'budgea_client'
|
525
|
+
# setup authorization
|
526
|
+
BudgeaClient.configure do |config|
|
527
|
+
# Configure API key authorization: api_key
|
528
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
529
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
530
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
531
|
+
end
|
476
532
|
|
477
533
|
api_instance = BudgeaClient::ProvidersApi.new
|
478
534
|
|
@@ -507,7 +563,7 @@ Name | Type | Description | Notes
|
|
507
563
|
|
508
564
|
### Authorization
|
509
565
|
|
510
|
-
|
566
|
+
[api_key](../README.md#api_key)
|
511
567
|
|
512
568
|
### HTTP request headers
|
513
569
|
|
@@ -527,6 +583,13 @@ This endpoint creates or update a bank logo. This logo is a mapping between a fi
|
|
527
583
|
```ruby
|
528
584
|
# load the gem
|
529
585
|
require 'budgea_client'
|
586
|
+
# setup authorization
|
587
|
+
BudgeaClient.configure do |config|
|
588
|
+
# Configure API key authorization: api_key
|
589
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
590
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
591
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
592
|
+
end
|
530
593
|
|
531
594
|
api_instance = BudgeaClient::ProvidersApi.new
|
532
595
|
|
@@ -561,7 +624,7 @@ Name | Type | Description | Notes
|
|
561
624
|
|
562
625
|
### Authorization
|
563
626
|
|
564
|
-
|
627
|
+
[api_key](../README.md#api_key)
|
565
628
|
|
566
629
|
### HTTP request headers
|
567
630
|
|
@@ -581,6 +644,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
581
644
|
```ruby
|
582
645
|
# load the gem
|
583
646
|
require 'budgea_client'
|
647
|
+
# setup authorization
|
648
|
+
BudgeaClient.configure do |config|
|
649
|
+
# Configure API key authorization: api_key
|
650
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
651
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
652
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
653
|
+
end
|
584
654
|
|
585
655
|
api_instance = BudgeaClient::ProvidersApi.new
|
586
656
|
|
@@ -612,7 +682,7 @@ Name | Type | Description | Notes
|
|
612
682
|
|
613
683
|
### Authorization
|
614
684
|
|
615
|
-
|
685
|
+
[api_key](../README.md#api_key)
|
616
686
|
|
617
687
|
### HTTP request headers
|
618
688
|
|
@@ -632,6 +702,13 @@ This endpoint creates a bank logo. You can either pass a file to as a parameter
|
|
632
702
|
```ruby
|
633
703
|
# load the gem
|
634
704
|
require 'budgea_client'
|
705
|
+
# setup authorization
|
706
|
+
BudgeaClient.configure do |config|
|
707
|
+
# Configure API key authorization: api_key
|
708
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
709
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
710
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
711
|
+
end
|
635
712
|
|
636
713
|
api_instance = BudgeaClient::ProvidersApi.new
|
637
714
|
|
@@ -663,7 +740,7 @@ Name | Type | Description | Notes
|
|
663
740
|
|
664
741
|
### Authorization
|
665
742
|
|
666
|
-
|
743
|
+
[api_key](../README.md#api_key)
|
667
744
|
|
668
745
|
### HTTP request headers
|
669
746
|
|
@@ -683,6 +760,13 @@ This endpoint creates or update a bank logo. This logo is a mapping between a fi
|
|
683
760
|
```ruby
|
684
761
|
# load the gem
|
685
762
|
require 'budgea_client'
|
763
|
+
# setup authorization
|
764
|
+
BudgeaClient.configure do |config|
|
765
|
+
# Configure API key authorization: api_key
|
766
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
767
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
768
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
769
|
+
end
|
686
770
|
|
687
771
|
api_instance = BudgeaClient::ProvidersApi.new
|
688
772
|
|
@@ -714,7 +798,7 @@ Name | Type | Description | Notes
|
|
714
798
|
|
715
799
|
### Authorization
|
716
800
|
|
717
|
-
|
801
|
+
[api_key](../README.md#api_key)
|
718
802
|
|
719
803
|
### HTTP request headers
|
720
804
|
|
@@ -734,6 +818,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
734
818
|
```ruby
|
735
819
|
# load the gem
|
736
820
|
require 'budgea_client'
|
821
|
+
# setup authorization
|
822
|
+
BudgeaClient.configure do |config|
|
823
|
+
# Configure API key authorization: api_key
|
824
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
825
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
826
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
827
|
+
end
|
737
828
|
|
738
829
|
api_instance = BudgeaClient::ProvidersApi.new
|
739
830
|
|
@@ -765,7 +856,7 @@ Name | Type | Description | Notes
|
|
765
856
|
|
766
857
|
### Authorization
|
767
858
|
|
768
|
-
|
859
|
+
[api_key](../README.md#api_key)
|
769
860
|
|
770
861
|
### HTTP request headers
|
771
862
|
|
@@ -785,6 +876,13 @@ Send a request to add a new connector<br><br>
|
|
785
876
|
```ruby
|
786
877
|
# load the gem
|
787
878
|
require 'budgea_client'
|
879
|
+
# setup authorization
|
880
|
+
BudgeaClient.configure do |config|
|
881
|
+
# Configure API key authorization: api_key
|
882
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
883
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
884
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
885
|
+
end
|
788
886
|
|
789
887
|
api_instance = BudgeaClient::ProvidersApi.new
|
790
888
|
|
@@ -834,7 +932,7 @@ Name | Type | Description | Notes
|
|
834
932
|
|
835
933
|
### Authorization
|
836
934
|
|
837
|
-
|
935
|
+
[api_key](../README.md#api_key)
|
838
936
|
|
839
937
|
### HTTP request headers
|
840
938
|
|
@@ -854,6 +952,13 @@ Get document types
|
|
854
952
|
```ruby
|
855
953
|
# load the gem
|
856
954
|
require 'budgea_client'
|
955
|
+
# setup authorization
|
956
|
+
BudgeaClient.configure do |config|
|
957
|
+
# Configure API key authorization: api_key
|
958
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
959
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
960
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
961
|
+
end
|
857
962
|
|
858
963
|
api_instance = BudgeaClient::ProvidersApi.new
|
859
964
|
|
@@ -882,7 +987,7 @@ Name | Type | Description | Notes
|
|
882
987
|
|
883
988
|
### Authorization
|
884
989
|
|
885
|
-
|
990
|
+
[api_key](../README.md#api_key)
|
886
991
|
|
887
992
|
### HTTP request headers
|
888
993
|
|
@@ -902,6 +1007,13 @@ Change value of a document type.<br><br>
|
|
902
1007
|
```ruby
|
903
1008
|
# load the gem
|
904
1009
|
require 'budgea_client'
|
1010
|
+
# setup authorization
|
1011
|
+
BudgeaClient.configure do |config|
|
1012
|
+
# Configure API key authorization: api_key
|
1013
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1014
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1015
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1016
|
+
end
|
905
1017
|
|
906
1018
|
api_instance = BudgeaClient::ProvidersApi.new
|
907
1019
|
|
@@ -939,7 +1051,7 @@ Name | Type | Description | Notes
|
|
939
1051
|
|
940
1052
|
### Authorization
|
941
1053
|
|
942
|
-
|
1054
|
+
[api_key](../README.md#api_key)
|
943
1055
|
|
944
1056
|
### HTTP request headers
|
945
1057
|
|
@@ -959,6 +1071,13 @@ Get logs about connections.<br><br>
|
|
959
1071
|
```ruby
|
960
1072
|
# load the gem
|
961
1073
|
require 'budgea_client'
|
1074
|
+
# setup authorization
|
1075
|
+
BudgeaClient.configure do |config|
|
1076
|
+
# Configure API key authorization: api_key
|
1077
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1078
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1079
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1080
|
+
end
|
962
1081
|
|
963
1082
|
api_instance = BudgeaClient::ProvidersApi.new
|
964
1083
|
|
@@ -1007,7 +1126,7 @@ Name | Type | Description | Notes
|
|
1007
1126
|
|
1008
1127
|
### Authorization
|
1009
1128
|
|
1010
|
-
|
1129
|
+
[api_key](../README.md#api_key)
|
1011
1130
|
|
1012
1131
|
### HTTP request headers
|
1013
1132
|
|
@@ -1027,6 +1146,13 @@ Post an image and apply OCR on it to obtain found meta-data.<br><br>
|
|
1027
1146
|
```ruby
|
1028
1147
|
# load the gem
|
1029
1148
|
require 'budgea_client'
|
1149
|
+
# setup authorization
|
1150
|
+
BudgeaClient.configure do |config|
|
1151
|
+
# Configure API key authorization: api_key
|
1152
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1153
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1154
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1155
|
+
end
|
1030
1156
|
|
1031
1157
|
api_instance = BudgeaClient::ProvidersApi.new
|
1032
1158
|
|
@@ -1059,7 +1185,7 @@ nil (empty response body)
|
|
1059
1185
|
|
1060
1186
|
### Authorization
|
1061
1187
|
|
1062
|
-
|
1188
|
+
[api_key](../README.md#api_key)
|
1063
1189
|
|
1064
1190
|
### HTTP request headers
|
1065
1191
|
|
@@ -1079,6 +1205,13 @@ Get list of connectors
|
|
1079
1205
|
```ruby
|
1080
1206
|
# load the gem
|
1081
1207
|
require 'budgea_client'
|
1208
|
+
# setup authorization
|
1209
|
+
BudgeaClient.configure do |config|
|
1210
|
+
# Configure API key authorization: api_key
|
1211
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1212
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1213
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1214
|
+
end
|
1082
1215
|
|
1083
1216
|
api_instance = BudgeaClient::ProvidersApi.new
|
1084
1217
|
|
@@ -1107,7 +1240,7 @@ Name | Type | Description | Notes
|
|
1107
1240
|
|
1108
1241
|
### Authorization
|
1109
1242
|
|
1110
|
-
|
1243
|
+
[api_key](../README.md#api_key)
|
1111
1244
|
|
1112
1245
|
### HTTP request headers
|
1113
1246
|
|
@@ -1127,6 +1260,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
1127
1260
|
```ruby
|
1128
1261
|
# load the gem
|
1129
1262
|
require 'budgea_client'
|
1263
|
+
# setup authorization
|
1264
|
+
BudgeaClient.configure do |config|
|
1265
|
+
# Configure API key authorization: api_key
|
1266
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1267
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1268
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1269
|
+
end
|
1130
1270
|
|
1131
1271
|
api_instance = BudgeaClient::ProvidersApi.new
|
1132
1272
|
|
@@ -1158,7 +1298,7 @@ Name | Type | Description | Notes
|
|
1158
1298
|
|
1159
1299
|
### Authorization
|
1160
1300
|
|
1161
|
-
|
1301
|
+
[api_key](../README.md#api_key)
|
1162
1302
|
|
1163
1303
|
### HTTP request headers
|
1164
1304
|
|
@@ -1178,6 +1318,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
1178
1318
|
```ruby
|
1179
1319
|
# load the gem
|
1180
1320
|
require 'budgea_client'
|
1321
|
+
# setup authorization
|
1322
|
+
BudgeaClient.configure do |config|
|
1323
|
+
# Configure API key authorization: api_key
|
1324
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1325
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1326
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1327
|
+
end
|
1181
1328
|
|
1182
1329
|
api_instance = BudgeaClient::ProvidersApi.new
|
1183
1330
|
|
@@ -1209,7 +1356,7 @@ Name | Type | Description | Notes
|
|
1209
1356
|
|
1210
1357
|
### Authorization
|
1211
1358
|
|
1212
|
-
|
1359
|
+
[api_key](../README.md#api_key)
|
1213
1360
|
|
1214
1361
|
### HTTP request headers
|
1215
1362
|
|
@@ -1229,6 +1376,13 @@ This endpoint returns all links to files associated with this bank.<br><br>
|
|
1229
1376
|
```ruby
|
1230
1377
|
# load the gem
|
1231
1378
|
require 'budgea_client'
|
1379
|
+
# setup authorization
|
1380
|
+
BudgeaClient.configure do |config|
|
1381
|
+
# Configure API key authorization: api_key
|
1382
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1383
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1384
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1385
|
+
end
|
1232
1386
|
|
1233
1387
|
api_instance = BudgeaClient::ProvidersApi.new
|
1234
1388
|
|
@@ -1260,7 +1414,7 @@ Name | Type | Description | Notes
|
|
1260
1414
|
|
1261
1415
|
### Authorization
|
1262
1416
|
|
1263
|
-
|
1417
|
+
[api_key](../README.md#api_key)
|
1264
1418
|
|
1265
1419
|
### HTTP request headers
|
1266
1420
|
|
@@ -1280,6 +1434,13 @@ Delete documents
|
|
1280
1434
|
```ruby
|
1281
1435
|
# load the gem
|
1282
1436
|
require 'budgea_client'
|
1437
|
+
# setup authorization
|
1438
|
+
BudgeaClient.configure do |config|
|
1439
|
+
# Configure API key authorization: api_key
|
1440
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1441
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1442
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1443
|
+
end
|
1283
1444
|
|
1284
1445
|
api_instance = BudgeaClient::ProvidersApi.new
|
1285
1446
|
|
@@ -1317,7 +1478,7 @@ Name | Type | Description | Notes
|
|
1317
1478
|
|
1318
1479
|
### Authorization
|
1319
1480
|
|
1320
|
-
|
1481
|
+
[api_key](../README.md#api_key)
|
1321
1482
|
|
1322
1483
|
### HTTP request headers
|
1323
1484
|
|
@@ -1337,6 +1498,13 @@ Get list of documents<br><br>
|
|
1337
1498
|
```ruby
|
1338
1499
|
# load the gem
|
1339
1500
|
require 'budgea_client'
|
1501
|
+
# setup authorization
|
1502
|
+
BudgeaClient.configure do |config|
|
1503
|
+
# Configure API key authorization: api_key
|
1504
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1505
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1506
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1507
|
+
end
|
1340
1508
|
|
1341
1509
|
api_instance = BudgeaClient::ProvidersApi.new
|
1342
1510
|
|
@@ -1392,7 +1560,7 @@ Name | Type | Description | Notes
|
|
1392
1560
|
|
1393
1561
|
### Authorization
|
1394
1562
|
|
1395
|
-
|
1563
|
+
[api_key](../README.md#api_key)
|
1396
1564
|
|
1397
1565
|
### HTTP request headers
|
1398
1566
|
|
@@ -1412,6 +1580,13 @@ Delete a document
|
|
1412
1580
|
```ruby
|
1413
1581
|
# load the gem
|
1414
1582
|
require 'budgea_client'
|
1583
|
+
# setup authorization
|
1584
|
+
BudgeaClient.configure do |config|
|
1585
|
+
# Configure API key authorization: api_key
|
1586
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1587
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1588
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1589
|
+
end
|
1415
1590
|
|
1416
1591
|
api_instance = BudgeaClient::ProvidersApi.new
|
1417
1592
|
|
@@ -1452,7 +1627,7 @@ Name | Type | Description | Notes
|
|
1452
1627
|
|
1453
1628
|
### Authorization
|
1454
1629
|
|
1455
|
-
|
1630
|
+
[api_key](../README.md#api_key)
|
1456
1631
|
|
1457
1632
|
### HTTP request headers
|
1458
1633
|
|
@@ -1472,6 +1647,13 @@ Edit meta-data of a specific document.
|
|
1472
1647
|
```ruby
|
1473
1648
|
# load the gem
|
1474
1649
|
require 'budgea_client'
|
1650
|
+
# setup authorization
|
1651
|
+
BudgeaClient.configure do |config|
|
1652
|
+
# Configure API key authorization: api_key
|
1653
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1654
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1655
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1656
|
+
end
|
1475
1657
|
|
1476
1658
|
api_instance = BudgeaClient::ProvidersApi.new
|
1477
1659
|
|
@@ -1534,7 +1716,7 @@ Name | Type | Description | Notes
|
|
1534
1716
|
|
1535
1717
|
### Authorization
|
1536
1718
|
|
1537
|
-
|
1719
|
+
[api_key](../README.md#api_key)
|
1538
1720
|
|
1539
1721
|
### HTTP request headers
|
1540
1722
|
|
@@ -1554,6 +1736,13 @@ Add a new document<br><br>
|
|
1554
1736
|
```ruby
|
1555
1737
|
# load the gem
|
1556
1738
|
require 'budgea_client'
|
1739
|
+
# setup authorization
|
1740
|
+
BudgeaClient.configure do |config|
|
1741
|
+
# Configure API key authorization: api_key
|
1742
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1743
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1744
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1745
|
+
end
|
1557
1746
|
|
1558
1747
|
api_instance = BudgeaClient::ProvidersApi.new
|
1559
1748
|
|
@@ -1617,7 +1806,7 @@ Name | Type | Description | Notes
|
|
1617
1806
|
|
1618
1807
|
### Authorization
|
1619
1808
|
|
1620
|
-
|
1809
|
+
[api_key](../README.md#api_key)
|
1621
1810
|
|
1622
1811
|
### HTTP request headers
|
1623
1812
|
|
@@ -1637,6 +1826,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
1637
1826
|
```ruby
|
1638
1827
|
# load the gem
|
1639
1828
|
require 'budgea_client'
|
1829
|
+
# setup authorization
|
1830
|
+
BudgeaClient.configure do |config|
|
1831
|
+
# Configure API key authorization: api_key
|
1832
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1833
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1834
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1835
|
+
end
|
1640
1836
|
|
1641
1837
|
api_instance = BudgeaClient::ProvidersApi.new
|
1642
1838
|
|
@@ -1677,7 +1873,7 @@ Name | Type | Description | Notes
|
|
1677
1873
|
|
1678
1874
|
### Authorization
|
1679
1875
|
|
1680
|
-
|
1876
|
+
[api_key](../README.md#api_key)
|
1681
1877
|
|
1682
1878
|
### HTTP request headers
|
1683
1879
|
|
@@ -1697,6 +1893,13 @@ Delete documents
|
|
1697
1893
|
```ruby
|
1698
1894
|
# load the gem
|
1699
1895
|
require 'budgea_client'
|
1896
|
+
# setup authorization
|
1897
|
+
BudgeaClient.configure do |config|
|
1898
|
+
# Configure API key authorization: api_key
|
1899
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1900
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1901
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1902
|
+
end
|
1700
1903
|
|
1701
1904
|
api_instance = BudgeaClient::ProvidersApi.new
|
1702
1905
|
|
@@ -1734,7 +1937,7 @@ Name | Type | Description | Notes
|
|
1734
1937
|
|
1735
1938
|
### Authorization
|
1736
1939
|
|
1737
|
-
|
1940
|
+
[api_key](../README.md#api_key)
|
1738
1941
|
|
1739
1942
|
### HTTP request headers
|
1740
1943
|
|
@@ -1754,6 +1957,13 @@ Get list of documents<br><br>
|
|
1754
1957
|
```ruby
|
1755
1958
|
# load the gem
|
1756
1959
|
require 'budgea_client'
|
1960
|
+
# setup authorization
|
1961
|
+
BudgeaClient.configure do |config|
|
1962
|
+
# Configure API key authorization: api_key
|
1963
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1964
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1965
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1966
|
+
end
|
1757
1967
|
|
1758
1968
|
api_instance = BudgeaClient::ProvidersApi.new
|
1759
1969
|
|
@@ -1809,7 +2019,7 @@ Name | Type | Description | Notes
|
|
1809
2019
|
|
1810
2020
|
### Authorization
|
1811
2021
|
|
1812
|
-
|
2022
|
+
[api_key](../README.md#api_key)
|
1813
2023
|
|
1814
2024
|
### HTTP request headers
|
1815
2025
|
|
@@ -1829,6 +2039,13 @@ Delete a document
|
|
1829
2039
|
```ruby
|
1830
2040
|
# load the gem
|
1831
2041
|
require 'budgea_client'
|
2042
|
+
# setup authorization
|
2043
|
+
BudgeaClient.configure do |config|
|
2044
|
+
# Configure API key authorization: api_key
|
2045
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2046
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2047
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2048
|
+
end
|
1832
2049
|
|
1833
2050
|
api_instance = BudgeaClient::ProvidersApi.new
|
1834
2051
|
|
@@ -1869,7 +2086,7 @@ Name | Type | Description | Notes
|
|
1869
2086
|
|
1870
2087
|
### Authorization
|
1871
2088
|
|
1872
|
-
|
2089
|
+
[api_key](../README.md#api_key)
|
1873
2090
|
|
1874
2091
|
### HTTP request headers
|
1875
2092
|
|
@@ -1889,6 +2106,13 @@ Edit meta-data of a specific document.
|
|
1889
2106
|
```ruby
|
1890
2107
|
# load the gem
|
1891
2108
|
require 'budgea_client'
|
2109
|
+
# setup authorization
|
2110
|
+
BudgeaClient.configure do |config|
|
2111
|
+
# Configure API key authorization: api_key
|
2112
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2113
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2114
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2115
|
+
end
|
1892
2116
|
|
1893
2117
|
api_instance = BudgeaClient::ProvidersApi.new
|
1894
2118
|
|
@@ -1951,7 +2175,7 @@ Name | Type | Description | Notes
|
|
1951
2175
|
|
1952
2176
|
### Authorization
|
1953
2177
|
|
1954
|
-
|
2178
|
+
[api_key](../README.md#api_key)
|
1955
2179
|
|
1956
2180
|
### HTTP request headers
|
1957
2181
|
|
@@ -1971,6 +2195,13 @@ Add a new document<br><br>
|
|
1971
2195
|
```ruby
|
1972
2196
|
# load the gem
|
1973
2197
|
require 'budgea_client'
|
2198
|
+
# setup authorization
|
2199
|
+
BudgeaClient.configure do |config|
|
2200
|
+
# Configure API key authorization: api_key
|
2201
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2202
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2203
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2204
|
+
end
|
1974
2205
|
|
1975
2206
|
api_instance = BudgeaClient::ProvidersApi.new
|
1976
2207
|
|
@@ -2034,7 +2265,7 @@ Name | Type | Description | Notes
|
|
2034
2265
|
|
2035
2266
|
### Authorization
|
2036
2267
|
|
2037
|
-
|
2268
|
+
[api_key](../README.md#api_key)
|
2038
2269
|
|
2039
2270
|
### HTTP request headers
|
2040
2271
|
|
@@ -2054,6 +2285,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
2054
2285
|
```ruby
|
2055
2286
|
# load the gem
|
2056
2287
|
require 'budgea_client'
|
2288
|
+
# setup authorization
|
2289
|
+
BudgeaClient.configure do |config|
|
2290
|
+
# Configure API key authorization: api_key
|
2291
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2292
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2293
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2294
|
+
end
|
2057
2295
|
|
2058
2296
|
api_instance = BudgeaClient::ProvidersApi.new
|
2059
2297
|
|
@@ -2094,7 +2332,7 @@ Name | Type | Description | Notes
|
|
2094
2332
|
|
2095
2333
|
### Authorization
|
2096
2334
|
|
2097
|
-
|
2335
|
+
[api_key](../README.md#api_key)
|
2098
2336
|
|
2099
2337
|
### HTTP request headers
|
2100
2338
|
|
@@ -2114,6 +2352,13 @@ Delete all connections
|
|
2114
2352
|
```ruby
|
2115
2353
|
# load the gem
|
2116
2354
|
require 'budgea_client'
|
2355
|
+
# setup authorization
|
2356
|
+
BudgeaClient.configure do |config|
|
2357
|
+
# Configure API key authorization: api_key
|
2358
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2359
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2360
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2361
|
+
end
|
2117
2362
|
|
2118
2363
|
api_instance = BudgeaClient::ProvidersApi.new
|
2119
2364
|
|
@@ -2145,7 +2390,7 @@ Name | Type | Description | Notes
|
|
2145
2390
|
|
2146
2391
|
### Authorization
|
2147
2392
|
|
2148
|
-
|
2393
|
+
[api_key](../README.md#api_key)
|
2149
2394
|
|
2150
2395
|
### HTTP request headers
|
2151
2396
|
|
@@ -2165,6 +2410,13 @@ Get connections
|
|
2165
2410
|
```ruby
|
2166
2411
|
# load the gem
|
2167
2412
|
require 'budgea_client'
|
2413
|
+
# setup authorization
|
2414
|
+
BudgeaClient.configure do |config|
|
2415
|
+
# Configure API key authorization: api_key
|
2416
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2417
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2418
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2419
|
+
end
|
2168
2420
|
|
2169
2421
|
api_instance = BudgeaClient::ProvidersApi.new
|
2170
2422
|
|
@@ -2196,7 +2448,7 @@ Name | Type | Description | Notes
|
|
2196
2448
|
|
2197
2449
|
### Authorization
|
2198
2450
|
|
2199
|
-
|
2451
|
+
[api_key](../README.md#api_key)
|
2200
2452
|
|
2201
2453
|
### HTTP request headers
|
2202
2454
|
|
@@ -2216,6 +2468,13 @@ Delete documents
|
|
2216
2468
|
```ruby
|
2217
2469
|
# load the gem
|
2218
2470
|
require 'budgea_client'
|
2471
|
+
# setup authorization
|
2472
|
+
BudgeaClient.configure do |config|
|
2473
|
+
# Configure API key authorization: api_key
|
2474
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2475
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2476
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2477
|
+
end
|
2219
2478
|
|
2220
2479
|
api_instance = BudgeaClient::ProvidersApi.new
|
2221
2480
|
|
@@ -2256,7 +2515,7 @@ Name | Type | Description | Notes
|
|
2256
2515
|
|
2257
2516
|
### Authorization
|
2258
2517
|
|
2259
|
-
|
2518
|
+
[api_key](../README.md#api_key)
|
2260
2519
|
|
2261
2520
|
### HTTP request headers
|
2262
2521
|
|
@@ -2276,6 +2535,13 @@ Get list of documents<br><br>
|
|
2276
2535
|
```ruby
|
2277
2536
|
# load the gem
|
2278
2537
|
require 'budgea_client'
|
2538
|
+
# setup authorization
|
2539
|
+
BudgeaClient.configure do |config|
|
2540
|
+
# Configure API key authorization: api_key
|
2541
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2542
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2543
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2544
|
+
end
|
2279
2545
|
|
2280
2546
|
api_instance = BudgeaClient::ProvidersApi.new
|
2281
2547
|
|
@@ -2334,7 +2600,7 @@ Name | Type | Description | Notes
|
|
2334
2600
|
|
2335
2601
|
### Authorization
|
2336
2602
|
|
2337
|
-
|
2603
|
+
[api_key](../README.md#api_key)
|
2338
2604
|
|
2339
2605
|
### HTTP request headers
|
2340
2606
|
|
@@ -2354,6 +2620,13 @@ Delete a document
|
|
2354
2620
|
```ruby
|
2355
2621
|
# load the gem
|
2356
2622
|
require 'budgea_client'
|
2623
|
+
# setup authorization
|
2624
|
+
BudgeaClient.configure do |config|
|
2625
|
+
# Configure API key authorization: api_key
|
2626
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2627
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2628
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2629
|
+
end
|
2357
2630
|
|
2358
2631
|
api_instance = BudgeaClient::ProvidersApi.new
|
2359
2632
|
|
@@ -2397,7 +2670,7 @@ Name | Type | Description | Notes
|
|
2397
2670
|
|
2398
2671
|
### Authorization
|
2399
2672
|
|
2400
|
-
|
2673
|
+
[api_key](../README.md#api_key)
|
2401
2674
|
|
2402
2675
|
### HTTP request headers
|
2403
2676
|
|
@@ -2417,6 +2690,13 @@ Edit meta-data of a specific document.
|
|
2417
2690
|
```ruby
|
2418
2691
|
# load the gem
|
2419
2692
|
require 'budgea_client'
|
2693
|
+
# setup authorization
|
2694
|
+
BudgeaClient.configure do |config|
|
2695
|
+
# Configure API key authorization: api_key
|
2696
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2697
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2698
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2699
|
+
end
|
2420
2700
|
|
2421
2701
|
api_instance = BudgeaClient::ProvidersApi.new
|
2422
2702
|
|
@@ -2482,7 +2762,7 @@ Name | Type | Description | Notes
|
|
2482
2762
|
|
2483
2763
|
### Authorization
|
2484
2764
|
|
2485
|
-
|
2765
|
+
[api_key](../README.md#api_key)
|
2486
2766
|
|
2487
2767
|
### HTTP request headers
|
2488
2768
|
|
@@ -2502,6 +2782,13 @@ Add a new document<br><br>
|
|
2502
2782
|
```ruby
|
2503
2783
|
# load the gem
|
2504
2784
|
require 'budgea_client'
|
2785
|
+
# setup authorization
|
2786
|
+
BudgeaClient.configure do |config|
|
2787
|
+
# Configure API key authorization: api_key
|
2788
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2789
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2790
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2791
|
+
end
|
2505
2792
|
|
2506
2793
|
api_instance = BudgeaClient::ProvidersApi.new
|
2507
2794
|
|
@@ -2568,7 +2855,7 @@ Name | Type | Description | Notes
|
|
2568
2855
|
|
2569
2856
|
### Authorization
|
2570
2857
|
|
2571
|
-
|
2858
|
+
[api_key](../README.md#api_key)
|
2572
2859
|
|
2573
2860
|
### HTTP request headers
|
2574
2861
|
|
@@ -2588,6 +2875,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
2588
2875
|
```ruby
|
2589
2876
|
# load the gem
|
2590
2877
|
require 'budgea_client'
|
2878
|
+
# setup authorization
|
2879
|
+
BudgeaClient.configure do |config|
|
2880
|
+
# Configure API key authorization: api_key
|
2881
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2882
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2883
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2884
|
+
end
|
2591
2885
|
|
2592
2886
|
api_instance = BudgeaClient::ProvidersApi.new
|
2593
2887
|
|
@@ -2631,7 +2925,7 @@ Name | Type | Description | Notes
|
|
2631
2925
|
|
2632
2926
|
### Authorization
|
2633
2927
|
|
2634
|
-
|
2928
|
+
[api_key](../README.md#api_key)
|
2635
2929
|
|
2636
2930
|
### HTTP request headers
|
2637
2931
|
|
@@ -2651,6 +2945,13 @@ Delete documents
|
|
2651
2945
|
```ruby
|
2652
2946
|
# load the gem
|
2653
2947
|
require 'budgea_client'
|
2948
|
+
# setup authorization
|
2949
|
+
BudgeaClient.configure do |config|
|
2950
|
+
# Configure API key authorization: api_key
|
2951
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2952
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2953
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2954
|
+
end
|
2654
2955
|
|
2655
2956
|
api_instance = BudgeaClient::ProvidersApi.new
|
2656
2957
|
|
@@ -2691,7 +2992,7 @@ Name | Type | Description | Notes
|
|
2691
2992
|
|
2692
2993
|
### Authorization
|
2693
2994
|
|
2694
|
-
|
2995
|
+
[api_key](../README.md#api_key)
|
2695
2996
|
|
2696
2997
|
### HTTP request headers
|
2697
2998
|
|
@@ -2711,6 +3012,13 @@ Get list of documents<br><br>
|
|
2711
3012
|
```ruby
|
2712
3013
|
# load the gem
|
2713
3014
|
require 'budgea_client'
|
3015
|
+
# setup authorization
|
3016
|
+
BudgeaClient.configure do |config|
|
3017
|
+
# Configure API key authorization: api_key
|
3018
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3019
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3020
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3021
|
+
end
|
2714
3022
|
|
2715
3023
|
api_instance = BudgeaClient::ProvidersApi.new
|
2716
3024
|
|
@@ -2769,7 +3077,7 @@ Name | Type | Description | Notes
|
|
2769
3077
|
|
2770
3078
|
### Authorization
|
2771
3079
|
|
2772
|
-
|
3080
|
+
[api_key](../README.md#api_key)
|
2773
3081
|
|
2774
3082
|
### HTTP request headers
|
2775
3083
|
|
@@ -2789,6 +3097,13 @@ Delete a document
|
|
2789
3097
|
```ruby
|
2790
3098
|
# load the gem
|
2791
3099
|
require 'budgea_client'
|
3100
|
+
# setup authorization
|
3101
|
+
BudgeaClient.configure do |config|
|
3102
|
+
# Configure API key authorization: api_key
|
3103
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3104
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3105
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3106
|
+
end
|
2792
3107
|
|
2793
3108
|
api_instance = BudgeaClient::ProvidersApi.new
|
2794
3109
|
|
@@ -2832,7 +3147,7 @@ Name | Type | Description | Notes
|
|
2832
3147
|
|
2833
3148
|
### Authorization
|
2834
3149
|
|
2835
|
-
|
3150
|
+
[api_key](../README.md#api_key)
|
2836
3151
|
|
2837
3152
|
### HTTP request headers
|
2838
3153
|
|
@@ -2852,6 +3167,13 @@ Edit meta-data of a specific document.
|
|
2852
3167
|
```ruby
|
2853
3168
|
# load the gem
|
2854
3169
|
require 'budgea_client'
|
3170
|
+
# setup authorization
|
3171
|
+
BudgeaClient.configure do |config|
|
3172
|
+
# Configure API key authorization: api_key
|
3173
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3174
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3175
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3176
|
+
end
|
2855
3177
|
|
2856
3178
|
api_instance = BudgeaClient::ProvidersApi.new
|
2857
3179
|
|
@@ -2917,7 +3239,7 @@ Name | Type | Description | Notes
|
|
2917
3239
|
|
2918
3240
|
### Authorization
|
2919
3241
|
|
2920
|
-
|
3242
|
+
[api_key](../README.md#api_key)
|
2921
3243
|
|
2922
3244
|
### HTTP request headers
|
2923
3245
|
|
@@ -2937,6 +3259,13 @@ Add a new document<br><br>
|
|
2937
3259
|
```ruby
|
2938
3260
|
# load the gem
|
2939
3261
|
require 'budgea_client'
|
3262
|
+
# setup authorization
|
3263
|
+
BudgeaClient.configure do |config|
|
3264
|
+
# Configure API key authorization: api_key
|
3265
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3266
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3267
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3268
|
+
end
|
2940
3269
|
|
2941
3270
|
api_instance = BudgeaClient::ProvidersApi.new
|
2942
3271
|
|
@@ -3003,7 +3332,7 @@ Name | Type | Description | Notes
|
|
3003
3332
|
|
3004
3333
|
### Authorization
|
3005
3334
|
|
3006
|
-
|
3335
|
+
[api_key](../README.md#api_key)
|
3007
3336
|
|
3008
3337
|
### HTTP request headers
|
3009
3338
|
|
@@ -3023,6 +3352,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
3023
3352
|
```ruby
|
3024
3353
|
# load the gem
|
3025
3354
|
require 'budgea_client'
|
3355
|
+
# setup authorization
|
3356
|
+
BudgeaClient.configure do |config|
|
3357
|
+
# Configure API key authorization: api_key
|
3358
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3359
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3360
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3361
|
+
end
|
3026
3362
|
|
3027
3363
|
api_instance = BudgeaClient::ProvidersApi.new
|
3028
3364
|
|
@@ -3066,7 +3402,7 @@ Name | Type | Description | Notes
|
|
3066
3402
|
|
3067
3403
|
### Authorization
|
3068
3404
|
|
3069
|
-
|
3405
|
+
[api_key](../README.md#api_key)
|
3070
3406
|
|
3071
3407
|
### HTTP request headers
|
3072
3408
|
|
@@ -3086,6 +3422,13 @@ This endpoint deletes a connection and all related accounts and transactions.<br
|
|
3086
3422
|
```ruby
|
3087
3423
|
# load the gem
|
3088
3424
|
require 'budgea_client'
|
3425
|
+
# setup authorization
|
3426
|
+
BudgeaClient.configure do |config|
|
3427
|
+
# Configure API key authorization: api_key
|
3428
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3429
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3430
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3431
|
+
end
|
3089
3432
|
|
3090
3433
|
api_instance = BudgeaClient::ProvidersApi.new
|
3091
3434
|
|
@@ -3120,7 +3463,7 @@ Name | Type | Description | Notes
|
|
3120
3463
|
|
3121
3464
|
### Authorization
|
3122
3465
|
|
3123
|
-
|
3466
|
+
[api_key](../README.md#api_key)
|
3124
3467
|
|
3125
3468
|
### HTTP request headers
|
3126
3469
|
|
@@ -3140,6 +3483,13 @@ Delete documents
|
|
3140
3483
|
```ruby
|
3141
3484
|
# load the gem
|
3142
3485
|
require 'budgea_client'
|
3486
|
+
# setup authorization
|
3487
|
+
BudgeaClient.configure do |config|
|
3488
|
+
# Configure API key authorization: api_key
|
3489
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3490
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3491
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3492
|
+
end
|
3143
3493
|
|
3144
3494
|
api_instance = BudgeaClient::ProvidersApi.new
|
3145
3495
|
|
@@ -3174,7 +3524,7 @@ Name | Type | Description | Notes
|
|
3174
3524
|
|
3175
3525
|
### Authorization
|
3176
3526
|
|
3177
|
-
|
3527
|
+
[api_key](../README.md#api_key)
|
3178
3528
|
|
3179
3529
|
### HTTP request headers
|
3180
3530
|
|
@@ -3194,6 +3544,13 @@ Get list of documents<br><br>
|
|
3194
3544
|
```ruby
|
3195
3545
|
# load the gem
|
3196
3546
|
require 'budgea_client'
|
3547
|
+
# setup authorization
|
3548
|
+
BudgeaClient.configure do |config|
|
3549
|
+
# Configure API key authorization: api_key
|
3550
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3551
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3552
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3553
|
+
end
|
3197
3554
|
|
3198
3555
|
api_instance = BudgeaClient::ProvidersApi.new
|
3199
3556
|
|
@@ -3246,7 +3603,7 @@ Name | Type | Description | Notes
|
|
3246
3603
|
|
3247
3604
|
### Authorization
|
3248
3605
|
|
3249
|
-
|
3606
|
+
[api_key](../README.md#api_key)
|
3250
3607
|
|
3251
3608
|
### HTTP request headers
|
3252
3609
|
|
@@ -3266,6 +3623,13 @@ Delete a document
|
|
3266
3623
|
```ruby
|
3267
3624
|
# load the gem
|
3268
3625
|
require 'budgea_client'
|
3626
|
+
# setup authorization
|
3627
|
+
BudgeaClient.configure do |config|
|
3628
|
+
# Configure API key authorization: api_key
|
3629
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3630
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3631
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3632
|
+
end
|
3269
3633
|
|
3270
3634
|
api_instance = BudgeaClient::ProvidersApi.new
|
3271
3635
|
|
@@ -3303,7 +3667,7 @@ Name | Type | Description | Notes
|
|
3303
3667
|
|
3304
3668
|
### Authorization
|
3305
3669
|
|
3306
|
-
|
3670
|
+
[api_key](../README.md#api_key)
|
3307
3671
|
|
3308
3672
|
### HTTP request headers
|
3309
3673
|
|
@@ -3323,6 +3687,13 @@ Edit meta-data of a specific document.
|
|
3323
3687
|
```ruby
|
3324
3688
|
# load the gem
|
3325
3689
|
require 'budgea_client'
|
3690
|
+
# setup authorization
|
3691
|
+
BudgeaClient.configure do |config|
|
3692
|
+
# Configure API key authorization: api_key
|
3693
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3694
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3695
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3696
|
+
end
|
3326
3697
|
|
3327
3698
|
api_instance = BudgeaClient::ProvidersApi.new
|
3328
3699
|
|
@@ -3382,7 +3753,7 @@ Name | Type | Description | Notes
|
|
3382
3753
|
|
3383
3754
|
### Authorization
|
3384
3755
|
|
3385
|
-
|
3756
|
+
[api_key](../README.md#api_key)
|
3386
3757
|
|
3387
3758
|
### HTTP request headers
|
3388
3759
|
|
@@ -3402,6 +3773,13 @@ Add a new document<br><br>
|
|
3402
3773
|
```ruby
|
3403
3774
|
# load the gem
|
3404
3775
|
require 'budgea_client'
|
3776
|
+
# setup authorization
|
3777
|
+
BudgeaClient.configure do |config|
|
3778
|
+
# Configure API key authorization: api_key
|
3779
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3780
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3781
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3782
|
+
end
|
3405
3783
|
|
3406
3784
|
api_instance = BudgeaClient::ProvidersApi.new
|
3407
3785
|
|
@@ -3462,7 +3840,7 @@ Name | Type | Description | Notes
|
|
3462
3840
|
|
3463
3841
|
### Authorization
|
3464
3842
|
|
3465
|
-
|
3843
|
+
[api_key](../README.md#api_key)
|
3466
3844
|
|
3467
3845
|
### HTTP request headers
|
3468
3846
|
|
@@ -3482,6 +3860,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
3482
3860
|
```ruby
|
3483
3861
|
# load the gem
|
3484
3862
|
require 'budgea_client'
|
3863
|
+
# setup authorization
|
3864
|
+
BudgeaClient.configure do |config|
|
3865
|
+
# Configure API key authorization: api_key
|
3866
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3867
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3868
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3869
|
+
end
|
3485
3870
|
|
3486
3871
|
api_instance = BudgeaClient::ProvidersApi.new
|
3487
3872
|
|
@@ -3519,7 +3904,7 @@ Name | Type | Description | Notes
|
|
3519
3904
|
|
3520
3905
|
### Authorization
|
3521
3906
|
|
3522
|
-
|
3907
|
+
[api_key](../README.md#api_key)
|
3523
3908
|
|
3524
3909
|
### HTTP request headers
|
3525
3910
|
|
@@ -3539,6 +3924,13 @@ Get connection additionnal informations
|
|
3539
3924
|
```ruby
|
3540
3925
|
# load the gem
|
3541
3926
|
require 'budgea_client'
|
3927
|
+
# setup authorization
|
3928
|
+
BudgeaClient.configure do |config|
|
3929
|
+
# Configure API key authorization: api_key
|
3930
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3931
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3932
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3933
|
+
end
|
3542
3934
|
|
3543
3935
|
api_instance = BudgeaClient::ProvidersApi.new
|
3544
3936
|
|
@@ -3573,7 +3965,7 @@ Name | Type | Description | Notes
|
|
3573
3965
|
|
3574
3966
|
### Authorization
|
3575
3967
|
|
3576
|
-
|
3968
|
+
[api_key](../README.md#api_key)
|
3577
3969
|
|
3578
3970
|
### HTTP request headers
|
3579
3971
|
|
@@ -3593,6 +3985,13 @@ Get logs about connections.<br><br>
|
|
3593
3985
|
```ruby
|
3594
3986
|
# load the gem
|
3595
3987
|
require 'budgea_client'
|
3988
|
+
# setup authorization
|
3989
|
+
BudgeaClient.configure do |config|
|
3990
|
+
# Configure API key authorization: api_key
|
3991
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
3992
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3993
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3994
|
+
end
|
3596
3995
|
|
3597
3996
|
api_instance = BudgeaClient::ProvidersApi.new
|
3598
3997
|
|
@@ -3647,7 +4046,7 @@ Name | Type | Description | Notes
|
|
3647
4046
|
|
3648
4047
|
### Authorization
|
3649
4048
|
|
3650
|
-
|
4049
|
+
[api_key](../README.md#api_key)
|
3651
4050
|
|
3652
4051
|
### HTTP request headers
|
3653
4052
|
|
@@ -3667,6 +4066,13 @@ Give new parameters to change on the configuration of this connection (for examp
|
|
3667
4066
|
```ruby
|
3668
4067
|
# load the gem
|
3669
4068
|
require 'budgea_client'
|
4069
|
+
# setup authorization
|
4070
|
+
BudgeaClient.configure do |config|
|
4071
|
+
# Configure API key authorization: api_key
|
4072
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4073
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4074
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4075
|
+
end
|
3670
4076
|
|
3671
4077
|
api_instance = BudgeaClient::ProvidersApi.new
|
3672
4078
|
|
@@ -3709,7 +4115,7 @@ Name | Type | Description | Notes
|
|
3709
4115
|
|
3710
4116
|
### Authorization
|
3711
4117
|
|
3712
|
-
|
4118
|
+
[api_key](../README.md#api_key)
|
3713
4119
|
|
3714
4120
|
### HTTP request headers
|
3715
4121
|
|
@@ -3729,6 +4135,13 @@ We suggest to pass parameter expand=accounts[transactions] to get all *new* and
|
|
3729
4135
|
```ruby
|
3730
4136
|
# load the gem
|
3731
4137
|
require 'budgea_client'
|
4138
|
+
# setup authorization
|
4139
|
+
BudgeaClient.configure do |config|
|
4140
|
+
# Configure API key authorization: api_key
|
4141
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4142
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4143
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4144
|
+
end
|
3732
4145
|
|
3733
4146
|
api_instance = BudgeaClient::ProvidersApi.new
|
3734
4147
|
|
@@ -3763,7 +4176,7 @@ Name | Type | Description | Notes
|
|
3763
4176
|
|
3764
4177
|
### Authorization
|
3765
4178
|
|
3766
|
-
|
4179
|
+
[api_key](../README.md#api_key)
|
3767
4180
|
|
3768
4181
|
### HTTP request headers
|
3769
4182
|
|
@@ -3783,6 +4196,13 @@ It deletes a specific subscription If this is the last synced subscription of a
|
|
3783
4196
|
```ruby
|
3784
4197
|
# load the gem
|
3785
4198
|
require 'budgea_client'
|
4199
|
+
# setup authorization
|
4200
|
+
BudgeaClient.configure do |config|
|
4201
|
+
# Configure API key authorization: api_key
|
4202
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4203
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4204
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4205
|
+
end
|
3786
4206
|
|
3787
4207
|
api_instance = BudgeaClient::ProvidersApi.new
|
3788
4208
|
|
@@ -3820,7 +4240,7 @@ Name | Type | Description | Notes
|
|
3820
4240
|
|
3821
4241
|
### Authorization
|
3822
4242
|
|
3823
|
-
|
4243
|
+
[api_key](../README.md#api_key)
|
3824
4244
|
|
3825
4245
|
### HTTP request headers
|
3826
4246
|
|
@@ -3840,6 +4260,13 @@ Delete documents
|
|
3840
4260
|
```ruby
|
3841
4261
|
# load the gem
|
3842
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
|
3843
4270
|
|
3844
4271
|
api_instance = BudgeaClient::ProvidersApi.new
|
3845
4272
|
|
@@ -3877,7 +4304,7 @@ Name | Type | Description | Notes
|
|
3877
4304
|
|
3878
4305
|
### Authorization
|
3879
4306
|
|
3880
|
-
|
4307
|
+
[api_key](../README.md#api_key)
|
3881
4308
|
|
3882
4309
|
### HTTP request headers
|
3883
4310
|
|
@@ -3897,6 +4324,13 @@ Get list of documents<br><br>
|
|
3897
4324
|
```ruby
|
3898
4325
|
# load the gem
|
3899
4326
|
require 'budgea_client'
|
4327
|
+
# setup authorization
|
4328
|
+
BudgeaClient.configure do |config|
|
4329
|
+
# Configure API key authorization: api_key
|
4330
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4331
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4332
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4333
|
+
end
|
3900
4334
|
|
3901
4335
|
api_instance = BudgeaClient::ProvidersApi.new
|
3902
4336
|
|
@@ -3952,7 +4386,7 @@ Name | Type | Description | Notes
|
|
3952
4386
|
|
3953
4387
|
### Authorization
|
3954
4388
|
|
3955
|
-
|
4389
|
+
[api_key](../README.md#api_key)
|
3956
4390
|
|
3957
4391
|
### HTTP request headers
|
3958
4392
|
|
@@ -3972,6 +4406,13 @@ Delete a document
|
|
3972
4406
|
```ruby
|
3973
4407
|
# load the gem
|
3974
4408
|
require 'budgea_client'
|
4409
|
+
# setup authorization
|
4410
|
+
BudgeaClient.configure do |config|
|
4411
|
+
# Configure API key authorization: api_key
|
4412
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4413
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4414
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4415
|
+
end
|
3975
4416
|
|
3976
4417
|
api_instance = BudgeaClient::ProvidersApi.new
|
3977
4418
|
|
@@ -4012,7 +4453,7 @@ Name | Type | Description | Notes
|
|
4012
4453
|
|
4013
4454
|
### Authorization
|
4014
4455
|
|
4015
|
-
|
4456
|
+
[api_key](../README.md#api_key)
|
4016
4457
|
|
4017
4458
|
### HTTP request headers
|
4018
4459
|
|
@@ -4032,6 +4473,13 @@ Edit meta-data of a specific document.
|
|
4032
4473
|
```ruby
|
4033
4474
|
# load the gem
|
4034
4475
|
require 'budgea_client'
|
4476
|
+
# setup authorization
|
4477
|
+
BudgeaClient.configure do |config|
|
4478
|
+
# Configure API key authorization: api_key
|
4479
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4480
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4481
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4482
|
+
end
|
4035
4483
|
|
4036
4484
|
api_instance = BudgeaClient::ProvidersApi.new
|
4037
4485
|
|
@@ -4094,7 +4542,7 @@ Name | Type | Description | Notes
|
|
4094
4542
|
|
4095
4543
|
### Authorization
|
4096
4544
|
|
4097
|
-
|
4545
|
+
[api_key](../README.md#api_key)
|
4098
4546
|
|
4099
4547
|
### HTTP request headers
|
4100
4548
|
|
@@ -4114,6 +4562,13 @@ Add a new document<br><br>
|
|
4114
4562
|
```ruby
|
4115
4563
|
# load the gem
|
4116
4564
|
require 'budgea_client'
|
4565
|
+
# setup authorization
|
4566
|
+
BudgeaClient.configure do |config|
|
4567
|
+
# Configure API key authorization: api_key
|
4568
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4569
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4570
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4571
|
+
end
|
4117
4572
|
|
4118
4573
|
api_instance = BudgeaClient::ProvidersApi.new
|
4119
4574
|
|
@@ -4177,7 +4632,7 @@ Name | Type | Description | Notes
|
|
4177
4632
|
|
4178
4633
|
### Authorization
|
4179
4634
|
|
4180
|
-
|
4635
|
+
[api_key](../README.md#api_key)
|
4181
4636
|
|
4182
4637
|
### HTTP request headers
|
4183
4638
|
|
@@ -4197,6 +4652,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
4197
4652
|
```ruby
|
4198
4653
|
# load the gem
|
4199
4654
|
require 'budgea_client'
|
4655
|
+
# setup authorization
|
4656
|
+
BudgeaClient.configure do |config|
|
4657
|
+
# Configure API key authorization: api_key
|
4658
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4659
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4660
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4661
|
+
end
|
4200
4662
|
|
4201
4663
|
api_instance = BudgeaClient::ProvidersApi.new
|
4202
4664
|
|
@@ -4237,7 +4699,7 @@ Name | Type | Description | Notes
|
|
4237
4699
|
|
4238
4700
|
### Authorization
|
4239
4701
|
|
4240
|
-
|
4702
|
+
[api_key](../README.md#api_key)
|
4241
4703
|
|
4242
4704
|
### HTTP request headers
|
4243
4705
|
|
@@ -4257,6 +4719,13 @@ It updates a specific subscription<br><br>
|
|
4257
4719
|
```ruby
|
4258
4720
|
# load the gem
|
4259
4721
|
require 'budgea_client'
|
4722
|
+
# setup authorization
|
4723
|
+
BudgeaClient.configure do |config|
|
4724
|
+
# Configure API key authorization: api_key
|
4725
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4726
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4727
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4728
|
+
end
|
4260
4729
|
|
4261
4730
|
api_instance = BudgeaClient::ProvidersApi.new
|
4262
4731
|
|
@@ -4298,7 +4767,7 @@ Name | Type | Description | Notes
|
|
4298
4767
|
|
4299
4768
|
### Authorization
|
4300
4769
|
|
4301
|
-
|
4770
|
+
[api_key](../README.md#api_key)
|
4302
4771
|
|
4303
4772
|
### HTTP request headers
|
4304
4773
|
|
@@ -4318,6 +4787,13 @@ Delete documents
|
|
4318
4787
|
```ruby
|
4319
4788
|
# load the gem
|
4320
4789
|
require 'budgea_client'
|
4790
|
+
# setup authorization
|
4791
|
+
BudgeaClient.configure do |config|
|
4792
|
+
# Configure API key authorization: api_key
|
4793
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4794
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4795
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4796
|
+
end
|
4321
4797
|
|
4322
4798
|
api_instance = BudgeaClient::ProvidersApi.new
|
4323
4799
|
|
@@ -4355,7 +4831,7 @@ Name | Type | Description | Notes
|
|
4355
4831
|
|
4356
4832
|
### Authorization
|
4357
4833
|
|
4358
|
-
|
4834
|
+
[api_key](../README.md#api_key)
|
4359
4835
|
|
4360
4836
|
### HTTP request headers
|
4361
4837
|
|
@@ -4375,6 +4851,13 @@ Get list of documents<br><br>
|
|
4375
4851
|
```ruby
|
4376
4852
|
# load the gem
|
4377
4853
|
require 'budgea_client'
|
4854
|
+
# setup authorization
|
4855
|
+
BudgeaClient.configure do |config|
|
4856
|
+
# Configure API key authorization: api_key
|
4857
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4858
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4859
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4860
|
+
end
|
4378
4861
|
|
4379
4862
|
api_instance = BudgeaClient::ProvidersApi.new
|
4380
4863
|
|
@@ -4430,7 +4913,7 @@ Name | Type | Description | Notes
|
|
4430
4913
|
|
4431
4914
|
### Authorization
|
4432
4915
|
|
4433
|
-
|
4916
|
+
[api_key](../README.md#api_key)
|
4434
4917
|
|
4435
4918
|
### HTTP request headers
|
4436
4919
|
|
@@ -4450,6 +4933,13 @@ Delete a document
|
|
4450
4933
|
```ruby
|
4451
4934
|
# load the gem
|
4452
4935
|
require 'budgea_client'
|
4936
|
+
# setup authorization
|
4937
|
+
BudgeaClient.configure do |config|
|
4938
|
+
# Configure API key authorization: api_key
|
4939
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
4940
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
4941
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
4942
|
+
end
|
4453
4943
|
|
4454
4944
|
api_instance = BudgeaClient::ProvidersApi.new
|
4455
4945
|
|
@@ -4490,7 +4980,7 @@ Name | Type | Description | Notes
|
|
4490
4980
|
|
4491
4981
|
### Authorization
|
4492
4982
|
|
4493
|
-
|
4983
|
+
[api_key](../README.md#api_key)
|
4494
4984
|
|
4495
4985
|
### HTTP request headers
|
4496
4986
|
|
@@ -4510,6 +5000,13 @@ Edit meta-data of a specific document.
|
|
4510
5000
|
```ruby
|
4511
5001
|
# load the gem
|
4512
5002
|
require 'budgea_client'
|
5003
|
+
# setup authorization
|
5004
|
+
BudgeaClient.configure do |config|
|
5005
|
+
# Configure API key authorization: api_key
|
5006
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5007
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5008
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5009
|
+
end
|
4513
5010
|
|
4514
5011
|
api_instance = BudgeaClient::ProvidersApi.new
|
4515
5012
|
|
@@ -4572,7 +5069,7 @@ Name | Type | Description | Notes
|
|
4572
5069
|
|
4573
5070
|
### Authorization
|
4574
5071
|
|
4575
|
-
|
5072
|
+
[api_key](../README.md#api_key)
|
4576
5073
|
|
4577
5074
|
### HTTP request headers
|
4578
5075
|
|
@@ -4592,6 +5089,13 @@ Add a new document<br><br>
|
|
4592
5089
|
```ruby
|
4593
5090
|
# load the gem
|
4594
5091
|
require 'budgea_client'
|
5092
|
+
# setup authorization
|
5093
|
+
BudgeaClient.configure do |config|
|
5094
|
+
# Configure API key authorization: api_key
|
5095
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5096
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5097
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5098
|
+
end
|
4595
5099
|
|
4596
5100
|
api_instance = BudgeaClient::ProvidersApi.new
|
4597
5101
|
|
@@ -4655,7 +5159,7 @@ Name | Type | Description | Notes
|
|
4655
5159
|
|
4656
5160
|
### Authorization
|
4657
5161
|
|
4658
|
-
|
5162
|
+
[api_key](../README.md#api_key)
|
4659
5163
|
|
4660
5164
|
### HTTP request headers
|
4661
5165
|
|
@@ -4675,6 +5179,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
4675
5179
|
```ruby
|
4676
5180
|
# load the gem
|
4677
5181
|
require 'budgea_client'
|
5182
|
+
# setup authorization
|
5183
|
+
BudgeaClient.configure do |config|
|
5184
|
+
# Configure API key authorization: api_key
|
5185
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5186
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5187
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5188
|
+
end
|
4678
5189
|
|
4679
5190
|
api_instance = BudgeaClient::ProvidersApi.new
|
4680
5191
|
|
@@ -4715,7 +5226,7 @@ Name | Type | Description | Notes
|
|
4715
5226
|
|
4716
5227
|
### Authorization
|
4717
5228
|
|
4718
|
-
|
5229
|
+
[api_key](../README.md#api_key)
|
4719
5230
|
|
4720
5231
|
### HTTP request headers
|
4721
5232
|
|
@@ -4735,6 +5246,13 @@ Delete documents
|
|
4735
5246
|
```ruby
|
4736
5247
|
# load the gem
|
4737
5248
|
require 'budgea_client'
|
5249
|
+
# setup authorization
|
5250
|
+
BudgeaClient.configure do |config|
|
5251
|
+
# Configure API key authorization: api_key
|
5252
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5253
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5254
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5255
|
+
end
|
4738
5256
|
|
4739
5257
|
api_instance = BudgeaClient::ProvidersApi.new
|
4740
5258
|
|
@@ -4772,7 +5290,7 @@ Name | Type | Description | Notes
|
|
4772
5290
|
|
4773
5291
|
### Authorization
|
4774
5292
|
|
4775
|
-
|
5293
|
+
[api_key](../README.md#api_key)
|
4776
5294
|
|
4777
5295
|
### HTTP request headers
|
4778
5296
|
|
@@ -4792,6 +5310,13 @@ Get list of documents<br><br>
|
|
4792
5310
|
```ruby
|
4793
5311
|
# load the gem
|
4794
5312
|
require 'budgea_client'
|
5313
|
+
# setup authorization
|
5314
|
+
BudgeaClient.configure do |config|
|
5315
|
+
# Configure API key authorization: api_key
|
5316
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5317
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5318
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5319
|
+
end
|
4795
5320
|
|
4796
5321
|
api_instance = BudgeaClient::ProvidersApi.new
|
4797
5322
|
|
@@ -4847,7 +5372,7 @@ Name | Type | Description | Notes
|
|
4847
5372
|
|
4848
5373
|
### Authorization
|
4849
5374
|
|
4850
|
-
|
5375
|
+
[api_key](../README.md#api_key)
|
4851
5376
|
|
4852
5377
|
### HTTP request headers
|
4853
5378
|
|
@@ -4867,6 +5392,13 @@ Delete a document
|
|
4867
5392
|
```ruby
|
4868
5393
|
# load the gem
|
4869
5394
|
require 'budgea_client'
|
5395
|
+
# setup authorization
|
5396
|
+
BudgeaClient.configure do |config|
|
5397
|
+
# Configure API key authorization: api_key
|
5398
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5399
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5400
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5401
|
+
end
|
4870
5402
|
|
4871
5403
|
api_instance = BudgeaClient::ProvidersApi.new
|
4872
5404
|
|
@@ -4907,7 +5439,7 @@ Name | Type | Description | Notes
|
|
4907
5439
|
|
4908
5440
|
### Authorization
|
4909
5441
|
|
4910
|
-
|
5442
|
+
[api_key](../README.md#api_key)
|
4911
5443
|
|
4912
5444
|
### HTTP request headers
|
4913
5445
|
|
@@ -4927,6 +5459,13 @@ Edit meta-data of a specific document.
|
|
4927
5459
|
```ruby
|
4928
5460
|
# load the gem
|
4929
5461
|
require 'budgea_client'
|
5462
|
+
# setup authorization
|
5463
|
+
BudgeaClient.configure do |config|
|
5464
|
+
# Configure API key authorization: api_key
|
5465
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5466
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5467
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5468
|
+
end
|
4930
5469
|
|
4931
5470
|
api_instance = BudgeaClient::ProvidersApi.new
|
4932
5471
|
|
@@ -4989,7 +5528,7 @@ Name | Type | Description | Notes
|
|
4989
5528
|
|
4990
5529
|
### Authorization
|
4991
5530
|
|
4992
|
-
|
5531
|
+
[api_key](../README.md#api_key)
|
4993
5532
|
|
4994
5533
|
### HTTP request headers
|
4995
5534
|
|
@@ -5009,6 +5548,13 @@ Add a new document<br><br>
|
|
5009
5548
|
```ruby
|
5010
5549
|
# load the gem
|
5011
5550
|
require 'budgea_client'
|
5551
|
+
# setup authorization
|
5552
|
+
BudgeaClient.configure do |config|
|
5553
|
+
# Configure API key authorization: api_key
|
5554
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5555
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5556
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5557
|
+
end
|
5012
5558
|
|
5013
5559
|
api_instance = BudgeaClient::ProvidersApi.new
|
5014
5560
|
|
@@ -5072,7 +5618,7 @@ Name | Type | Description | Notes
|
|
5072
5618
|
|
5073
5619
|
### Authorization
|
5074
5620
|
|
5075
|
-
|
5621
|
+
[api_key](../README.md#api_key)
|
5076
5622
|
|
5077
5623
|
### HTTP request headers
|
5078
5624
|
|
@@ -5092,6 +5638,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
5092
5638
|
```ruby
|
5093
5639
|
# load the gem
|
5094
5640
|
require 'budgea_client'
|
5641
|
+
# setup authorization
|
5642
|
+
BudgeaClient.configure do |config|
|
5643
|
+
# Configure API key authorization: api_key
|
5644
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5645
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5646
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5647
|
+
end
|
5095
5648
|
|
5096
5649
|
api_instance = BudgeaClient::ProvidersApi.new
|
5097
5650
|
|
@@ -5132,7 +5685,7 @@ Name | Type | Description | Notes
|
|
5132
5685
|
|
5133
5686
|
### Authorization
|
5134
5687
|
|
5135
|
-
|
5688
|
+
[api_key](../README.md#api_key)
|
5136
5689
|
|
5137
5690
|
### HTTP request headers
|
5138
5691
|
|
@@ -5152,6 +5705,13 @@ Create a new connection to a given bank or provider. You have to give all needed
|
|
5152
5705
|
```ruby
|
5153
5706
|
# load the gem
|
5154
5707
|
require 'budgea_client'
|
5708
|
+
# setup authorization
|
5709
|
+
BudgeaClient.configure do |config|
|
5710
|
+
# Configure API key authorization: api_key
|
5711
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5712
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5713
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5714
|
+
end
|
5155
5715
|
|
5156
5716
|
api_instance = BudgeaClient::ProvidersApi.new
|
5157
5717
|
|
@@ -5187,7 +5747,7 @@ Name | Type | Description | Notes
|
|
5187
5747
|
|
5188
5748
|
### Authorization
|
5189
5749
|
|
5190
|
-
|
5750
|
+
[api_key](../README.md#api_key)
|
5191
5751
|
|
5192
5752
|
### HTTP request headers
|
5193
5753
|
|
@@ -5207,6 +5767,13 @@ Delete documents
|
|
5207
5767
|
```ruby
|
5208
5768
|
# load the gem
|
5209
5769
|
require 'budgea_client'
|
5770
|
+
# setup authorization
|
5771
|
+
BudgeaClient.configure do |config|
|
5772
|
+
# Configure API key authorization: api_key
|
5773
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5774
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5775
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5776
|
+
end
|
5210
5777
|
|
5211
5778
|
api_instance = BudgeaClient::ProvidersApi.new
|
5212
5779
|
|
@@ -5238,7 +5805,7 @@ Name | Type | Description | Notes
|
|
5238
5805
|
|
5239
5806
|
### Authorization
|
5240
5807
|
|
5241
|
-
|
5808
|
+
[api_key](../README.md#api_key)
|
5242
5809
|
|
5243
5810
|
### HTTP request headers
|
5244
5811
|
|
@@ -5258,6 +5825,13 @@ Get list of documents<br><br>
|
|
5258
5825
|
```ruby
|
5259
5826
|
# load the gem
|
5260
5827
|
require 'budgea_client'
|
5828
|
+
# setup authorization
|
5829
|
+
BudgeaClient.configure do |config|
|
5830
|
+
# Configure API key authorization: api_key
|
5831
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5832
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5833
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5834
|
+
end
|
5261
5835
|
|
5262
5836
|
api_instance = BudgeaClient::ProvidersApi.new
|
5263
5837
|
|
@@ -5307,7 +5881,7 @@ Name | Type | Description | Notes
|
|
5307
5881
|
|
5308
5882
|
### Authorization
|
5309
5883
|
|
5310
|
-
|
5884
|
+
[api_key](../README.md#api_key)
|
5311
5885
|
|
5312
5886
|
### HTTP request headers
|
5313
5887
|
|
@@ -5327,6 +5901,13 @@ Delete a document
|
|
5327
5901
|
```ruby
|
5328
5902
|
# load the gem
|
5329
5903
|
require 'budgea_client'
|
5904
|
+
# setup authorization
|
5905
|
+
BudgeaClient.configure do |config|
|
5906
|
+
# Configure API key authorization: api_key
|
5907
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5908
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5909
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5910
|
+
end
|
5330
5911
|
|
5331
5912
|
api_instance = BudgeaClient::ProvidersApi.new
|
5332
5913
|
|
@@ -5361,7 +5942,7 @@ Name | Type | Description | Notes
|
|
5361
5942
|
|
5362
5943
|
### Authorization
|
5363
5944
|
|
5364
|
-
|
5945
|
+
[api_key](../README.md#api_key)
|
5365
5946
|
|
5366
5947
|
### HTTP request headers
|
5367
5948
|
|
@@ -5381,6 +5962,13 @@ Edit meta-data of a specific document.
|
|
5381
5962
|
```ruby
|
5382
5963
|
# load the gem
|
5383
5964
|
require 'budgea_client'
|
5965
|
+
# setup authorization
|
5966
|
+
BudgeaClient.configure do |config|
|
5967
|
+
# Configure API key authorization: api_key
|
5968
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
5969
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
5970
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
5971
|
+
end
|
5384
5972
|
|
5385
5973
|
api_instance = BudgeaClient::ProvidersApi.new
|
5386
5974
|
|
@@ -5437,7 +6025,7 @@ Name | Type | Description | Notes
|
|
5437
6025
|
|
5438
6026
|
### Authorization
|
5439
6027
|
|
5440
|
-
|
6028
|
+
[api_key](../README.md#api_key)
|
5441
6029
|
|
5442
6030
|
### HTTP request headers
|
5443
6031
|
|
@@ -5457,6 +6045,13 @@ Add a new document<br><br>
|
|
5457
6045
|
```ruby
|
5458
6046
|
# load the gem
|
5459
6047
|
require 'budgea_client'
|
6048
|
+
# setup authorization
|
6049
|
+
BudgeaClient.configure do |config|
|
6050
|
+
# Configure API key authorization: api_key
|
6051
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6052
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6053
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6054
|
+
end
|
5460
6055
|
|
5461
6056
|
api_instance = BudgeaClient::ProvidersApi.new
|
5462
6057
|
|
@@ -5514,7 +6109,7 @@ Name | Type | Description | Notes
|
|
5514
6109
|
|
5515
6110
|
### Authorization
|
5516
6111
|
|
5517
|
-
|
6112
|
+
[api_key](../README.md#api_key)
|
5518
6113
|
|
5519
6114
|
### HTTP request headers
|
5520
6115
|
|
@@ -5534,6 +6129,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
5534
6129
|
```ruby
|
5535
6130
|
# load the gem
|
5536
6131
|
require 'budgea_client'
|
6132
|
+
# setup authorization
|
6133
|
+
BudgeaClient.configure do |config|
|
6134
|
+
# Configure API key authorization: api_key
|
6135
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6136
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6137
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6138
|
+
end
|
5537
6139
|
|
5538
6140
|
api_instance = BudgeaClient::ProvidersApi.new
|
5539
6141
|
|
@@ -5568,7 +6170,7 @@ Name | Type | Description | Notes
|
|
5568
6170
|
|
5569
6171
|
### Authorization
|
5570
6172
|
|
5571
|
-
|
6173
|
+
[api_key](../README.md#api_key)
|
5572
6174
|
|
5573
6175
|
### HTTP request headers
|
5574
6176
|
|
@@ -5588,6 +6190,13 @@ Get logs about connections.<br><br>
|
|
5588
6190
|
```ruby
|
5589
6191
|
# load the gem
|
5590
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
|
5591
6200
|
|
5592
6201
|
api_instance = BudgeaClient::ProvidersApi.new
|
5593
6202
|
|
@@ -5639,7 +6248,7 @@ Name | Type | Description | Notes
|
|
5639
6248
|
|
5640
6249
|
### Authorization
|
5641
6250
|
|
5642
|
-
|
6251
|
+
[api_key](../README.md#api_key)
|
5643
6252
|
|
5644
6253
|
### HTTP request headers
|
5645
6254
|
|
@@ -5659,6 +6268,13 @@ Post an image and apply OCR on it to obtain found meta-data.<br><br>
|
|
5659
6268
|
```ruby
|
5660
6269
|
# load the gem
|
5661
6270
|
require 'budgea_client'
|
6271
|
+
# setup authorization
|
6272
|
+
BudgeaClient.configure do |config|
|
6273
|
+
# Configure API key authorization: api_key
|
6274
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6275
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6276
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6277
|
+
end
|
5662
6278
|
|
5663
6279
|
api_instance = BudgeaClient::ProvidersApi.new
|
5664
6280
|
|
@@ -5694,7 +6310,7 @@ nil (empty response body)
|
|
5694
6310
|
|
5695
6311
|
### Authorization
|
5696
6312
|
|
5697
|
-
|
6313
|
+
[api_key](../README.md#api_key)
|
5698
6314
|
|
5699
6315
|
### HTTP request headers
|
5700
6316
|
|
@@ -5714,6 +6330,13 @@ It deletes a specific subscription If this is the last synced subscription of a
|
|
5714
6330
|
```ruby
|
5715
6331
|
# load the gem
|
5716
6332
|
require 'budgea_client'
|
6333
|
+
# setup authorization
|
6334
|
+
BudgeaClient.configure do |config|
|
6335
|
+
# Configure API key authorization: api_key
|
6336
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6337
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6338
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6339
|
+
end
|
5717
6340
|
|
5718
6341
|
api_instance = BudgeaClient::ProvidersApi.new
|
5719
6342
|
|
@@ -5748,7 +6371,7 @@ Name | Type | Description | Notes
|
|
5748
6371
|
|
5749
6372
|
### Authorization
|
5750
6373
|
|
5751
|
-
|
6374
|
+
[api_key](../README.md#api_key)
|
5752
6375
|
|
5753
6376
|
### HTTP request headers
|
5754
6377
|
|
@@ -5768,6 +6391,13 @@ Delete documents
|
|
5768
6391
|
```ruby
|
5769
6392
|
# load the gem
|
5770
6393
|
require 'budgea_client'
|
6394
|
+
# setup authorization
|
6395
|
+
BudgeaClient.configure do |config|
|
6396
|
+
# Configure API key authorization: api_key
|
6397
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6398
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6399
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6400
|
+
end
|
5771
6401
|
|
5772
6402
|
api_instance = BudgeaClient::ProvidersApi.new
|
5773
6403
|
|
@@ -5802,7 +6432,7 @@ Name | Type | Description | Notes
|
|
5802
6432
|
|
5803
6433
|
### Authorization
|
5804
6434
|
|
5805
|
-
|
6435
|
+
[api_key](../README.md#api_key)
|
5806
6436
|
|
5807
6437
|
### HTTP request headers
|
5808
6438
|
|
@@ -5822,6 +6452,13 @@ Get list of documents<br><br>
|
|
5822
6452
|
```ruby
|
5823
6453
|
# load the gem
|
5824
6454
|
require 'budgea_client'
|
6455
|
+
# setup authorization
|
6456
|
+
BudgeaClient.configure do |config|
|
6457
|
+
# Configure API key authorization: api_key
|
6458
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6459
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6460
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6461
|
+
end
|
5825
6462
|
|
5826
6463
|
api_instance = BudgeaClient::ProvidersApi.new
|
5827
6464
|
|
@@ -5874,7 +6511,7 @@ Name | Type | Description | Notes
|
|
5874
6511
|
|
5875
6512
|
### Authorization
|
5876
6513
|
|
5877
|
-
|
6514
|
+
[api_key](../README.md#api_key)
|
5878
6515
|
|
5879
6516
|
### HTTP request headers
|
5880
6517
|
|
@@ -5894,6 +6531,13 @@ Delete a document
|
|
5894
6531
|
```ruby
|
5895
6532
|
# load the gem
|
5896
6533
|
require 'budgea_client'
|
6534
|
+
# setup authorization
|
6535
|
+
BudgeaClient.configure do |config|
|
6536
|
+
# Configure API key authorization: api_key
|
6537
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6538
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6539
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6540
|
+
end
|
5897
6541
|
|
5898
6542
|
api_instance = BudgeaClient::ProvidersApi.new
|
5899
6543
|
|
@@ -5931,7 +6575,7 @@ Name | Type | Description | Notes
|
|
5931
6575
|
|
5932
6576
|
### Authorization
|
5933
6577
|
|
5934
|
-
|
6578
|
+
[api_key](../README.md#api_key)
|
5935
6579
|
|
5936
6580
|
### HTTP request headers
|
5937
6581
|
|
@@ -5951,6 +6595,13 @@ Edit meta-data of a specific document.
|
|
5951
6595
|
```ruby
|
5952
6596
|
# load the gem
|
5953
6597
|
require 'budgea_client'
|
6598
|
+
# setup authorization
|
6599
|
+
BudgeaClient.configure do |config|
|
6600
|
+
# Configure API key authorization: api_key
|
6601
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6602
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6603
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6604
|
+
end
|
5954
6605
|
|
5955
6606
|
api_instance = BudgeaClient::ProvidersApi.new
|
5956
6607
|
|
@@ -6010,7 +6661,7 @@ Name | Type | Description | Notes
|
|
6010
6661
|
|
6011
6662
|
### Authorization
|
6012
6663
|
|
6013
|
-
|
6664
|
+
[api_key](../README.md#api_key)
|
6014
6665
|
|
6015
6666
|
### HTTP request headers
|
6016
6667
|
|
@@ -6030,6 +6681,13 @@ Add a new document<br><br>
|
|
6030
6681
|
```ruby
|
6031
6682
|
# load the gem
|
6032
6683
|
require 'budgea_client'
|
6684
|
+
# setup authorization
|
6685
|
+
BudgeaClient.configure do |config|
|
6686
|
+
# Configure API key authorization: api_key
|
6687
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6688
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6689
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6690
|
+
end
|
6033
6691
|
|
6034
6692
|
api_instance = BudgeaClient::ProvidersApi.new
|
6035
6693
|
|
@@ -6090,7 +6748,7 @@ Name | Type | Description | Notes
|
|
6090
6748
|
|
6091
6749
|
### Authorization
|
6092
6750
|
|
6093
|
-
|
6751
|
+
[api_key](../README.md#api_key)
|
6094
6752
|
|
6095
6753
|
### HTTP request headers
|
6096
6754
|
|
@@ -6110,6 +6768,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
6110
6768
|
```ruby
|
6111
6769
|
# load the gem
|
6112
6770
|
require 'budgea_client'
|
6771
|
+
# setup authorization
|
6772
|
+
BudgeaClient.configure do |config|
|
6773
|
+
# Configure API key authorization: api_key
|
6774
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6775
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6776
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6777
|
+
end
|
6113
6778
|
|
6114
6779
|
api_instance = BudgeaClient::ProvidersApi.new
|
6115
6780
|
|
@@ -6147,7 +6812,7 @@ Name | Type | Description | Notes
|
|
6147
6812
|
|
6148
6813
|
### Authorization
|
6149
6814
|
|
6150
|
-
|
6815
|
+
[api_key](../README.md#api_key)
|
6151
6816
|
|
6152
6817
|
### HTTP request headers
|
6153
6818
|
|
@@ -6167,6 +6832,13 @@ It updates a specific subscription<br><br>
|
|
6167
6832
|
```ruby
|
6168
6833
|
# load the gem
|
6169
6834
|
require 'budgea_client'
|
6835
|
+
# setup authorization
|
6836
|
+
BudgeaClient.configure do |config|
|
6837
|
+
# Configure API key authorization: api_key
|
6838
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6839
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6840
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6841
|
+
end
|
6170
6842
|
|
6171
6843
|
api_instance = BudgeaClient::ProvidersApi.new
|
6172
6844
|
|
@@ -6205,7 +6877,7 @@ Name | Type | Description | Notes
|
|
6205
6877
|
|
6206
6878
|
### Authorization
|
6207
6879
|
|
6208
|
-
|
6880
|
+
[api_key](../README.md#api_key)
|
6209
6881
|
|
6210
6882
|
### HTTP request headers
|
6211
6883
|
|
@@ -6225,6 +6897,13 @@ Delete documents
|
|
6225
6897
|
```ruby
|
6226
6898
|
# load the gem
|
6227
6899
|
require 'budgea_client'
|
6900
|
+
# setup authorization
|
6901
|
+
BudgeaClient.configure do |config|
|
6902
|
+
# Configure API key authorization: api_key
|
6903
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6904
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6905
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6906
|
+
end
|
6228
6907
|
|
6229
6908
|
api_instance = BudgeaClient::ProvidersApi.new
|
6230
6909
|
|
@@ -6259,7 +6938,7 @@ Name | Type | Description | Notes
|
|
6259
6938
|
|
6260
6939
|
### Authorization
|
6261
6940
|
|
6262
|
-
|
6941
|
+
[api_key](../README.md#api_key)
|
6263
6942
|
|
6264
6943
|
### HTTP request headers
|
6265
6944
|
|
@@ -6279,6 +6958,13 @@ Get list of documents<br><br>
|
|
6279
6958
|
```ruby
|
6280
6959
|
# load the gem
|
6281
6960
|
require 'budgea_client'
|
6961
|
+
# setup authorization
|
6962
|
+
BudgeaClient.configure do |config|
|
6963
|
+
# Configure API key authorization: api_key
|
6964
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6965
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6966
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6967
|
+
end
|
6282
6968
|
|
6283
6969
|
api_instance = BudgeaClient::ProvidersApi.new
|
6284
6970
|
|
@@ -6331,7 +7017,7 @@ Name | Type | Description | Notes
|
|
6331
7017
|
|
6332
7018
|
### Authorization
|
6333
7019
|
|
6334
|
-
|
7020
|
+
[api_key](../README.md#api_key)
|
6335
7021
|
|
6336
7022
|
### HTTP request headers
|
6337
7023
|
|
@@ -6351,6 +7037,13 @@ Delete a document
|
|
6351
7037
|
```ruby
|
6352
7038
|
# load the gem
|
6353
7039
|
require 'budgea_client'
|
7040
|
+
# setup authorization
|
7041
|
+
BudgeaClient.configure do |config|
|
7042
|
+
# Configure API key authorization: api_key
|
7043
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7044
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7045
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7046
|
+
end
|
6354
7047
|
|
6355
7048
|
api_instance = BudgeaClient::ProvidersApi.new
|
6356
7049
|
|
@@ -6388,7 +7081,7 @@ Name | Type | Description | Notes
|
|
6388
7081
|
|
6389
7082
|
### Authorization
|
6390
7083
|
|
6391
|
-
|
7084
|
+
[api_key](../README.md#api_key)
|
6392
7085
|
|
6393
7086
|
### HTTP request headers
|
6394
7087
|
|
@@ -6408,6 +7101,13 @@ Edit meta-data of a specific document.
|
|
6408
7101
|
```ruby
|
6409
7102
|
# load the gem
|
6410
7103
|
require 'budgea_client'
|
7104
|
+
# setup authorization
|
7105
|
+
BudgeaClient.configure do |config|
|
7106
|
+
# Configure API key authorization: api_key
|
7107
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7108
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7109
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7110
|
+
end
|
6411
7111
|
|
6412
7112
|
api_instance = BudgeaClient::ProvidersApi.new
|
6413
7113
|
|
@@ -6467,7 +7167,7 @@ Name | Type | Description | Notes
|
|
6467
7167
|
|
6468
7168
|
### Authorization
|
6469
7169
|
|
6470
|
-
|
7170
|
+
[api_key](../README.md#api_key)
|
6471
7171
|
|
6472
7172
|
### HTTP request headers
|
6473
7173
|
|
@@ -6487,6 +7187,13 @@ Add a new document<br><br>
|
|
6487
7187
|
```ruby
|
6488
7188
|
# load the gem
|
6489
7189
|
require 'budgea_client'
|
7190
|
+
# setup authorization
|
7191
|
+
BudgeaClient.configure do |config|
|
7192
|
+
# Configure API key authorization: api_key
|
7193
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7194
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7195
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7196
|
+
end
|
6490
7197
|
|
6491
7198
|
api_instance = BudgeaClient::ProvidersApi.new
|
6492
7199
|
|
@@ -6547,7 +7254,7 @@ Name | Type | Description | Notes
|
|
6547
7254
|
|
6548
7255
|
### Authorization
|
6549
7256
|
|
6550
|
-
|
7257
|
+
[api_key](../README.md#api_key)
|
6551
7258
|
|
6552
7259
|
### HTTP request headers
|
6553
7260
|
|
@@ -6567,6 +7274,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
6567
7274
|
```ruby
|
6568
7275
|
# load the gem
|
6569
7276
|
require 'budgea_client'
|
7277
|
+
# setup authorization
|
7278
|
+
BudgeaClient.configure do |config|
|
7279
|
+
# Configure API key authorization: api_key
|
7280
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7281
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7282
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7283
|
+
end
|
6570
7284
|
|
6571
7285
|
api_instance = BudgeaClient::ProvidersApi.new
|
6572
7286
|
|
@@ -6604,7 +7318,7 @@ Name | Type | Description | Notes
|
|
6604
7318
|
|
6605
7319
|
### Authorization
|
6606
7320
|
|
6607
|
-
|
7321
|
+
[api_key](../README.md#api_key)
|
6608
7322
|
|
6609
7323
|
### HTTP request headers
|
6610
7324
|
|
@@ -6624,6 +7338,13 @@ Delete documents
|
|
6624
7338
|
```ruby
|
6625
7339
|
# load the gem
|
6626
7340
|
require 'budgea_client'
|
7341
|
+
# setup authorization
|
7342
|
+
BudgeaClient.configure do |config|
|
7343
|
+
# Configure API key authorization: api_key
|
7344
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7345
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7346
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7347
|
+
end
|
6627
7348
|
|
6628
7349
|
api_instance = BudgeaClient::ProvidersApi.new
|
6629
7350
|
|
@@ -6658,7 +7379,7 @@ Name | Type | Description | Notes
|
|
6658
7379
|
|
6659
7380
|
### Authorization
|
6660
7381
|
|
6661
|
-
|
7382
|
+
[api_key](../README.md#api_key)
|
6662
7383
|
|
6663
7384
|
### HTTP request headers
|
6664
7385
|
|
@@ -6678,6 +7399,13 @@ Get list of documents<br><br>
|
|
6678
7399
|
```ruby
|
6679
7400
|
# load the gem
|
6680
7401
|
require 'budgea_client'
|
7402
|
+
# setup authorization
|
7403
|
+
BudgeaClient.configure do |config|
|
7404
|
+
# Configure API key authorization: api_key
|
7405
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7406
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7407
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7408
|
+
end
|
6681
7409
|
|
6682
7410
|
api_instance = BudgeaClient::ProvidersApi.new
|
6683
7411
|
|
@@ -6730,7 +7458,7 @@ Name | Type | Description | Notes
|
|
6730
7458
|
|
6731
7459
|
### Authorization
|
6732
7460
|
|
6733
|
-
|
7461
|
+
[api_key](../README.md#api_key)
|
6734
7462
|
|
6735
7463
|
### HTTP request headers
|
6736
7464
|
|
@@ -6750,6 +7478,13 @@ Delete a document
|
|
6750
7478
|
```ruby
|
6751
7479
|
# load the gem
|
6752
7480
|
require 'budgea_client'
|
7481
|
+
# setup authorization
|
7482
|
+
BudgeaClient.configure do |config|
|
7483
|
+
# Configure API key authorization: api_key
|
7484
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7485
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7486
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7487
|
+
end
|
6753
7488
|
|
6754
7489
|
api_instance = BudgeaClient::ProvidersApi.new
|
6755
7490
|
|
@@ -6787,7 +7522,7 @@ Name | Type | Description | Notes
|
|
6787
7522
|
|
6788
7523
|
### Authorization
|
6789
7524
|
|
6790
|
-
|
7525
|
+
[api_key](../README.md#api_key)
|
6791
7526
|
|
6792
7527
|
### HTTP request headers
|
6793
7528
|
|
@@ -6807,6 +7542,13 @@ Edit meta-data of a specific document.
|
|
6807
7542
|
```ruby
|
6808
7543
|
# load the gem
|
6809
7544
|
require 'budgea_client'
|
7545
|
+
# setup authorization
|
7546
|
+
BudgeaClient.configure do |config|
|
7547
|
+
# Configure API key authorization: api_key
|
7548
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7549
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7550
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7551
|
+
end
|
6810
7552
|
|
6811
7553
|
api_instance = BudgeaClient::ProvidersApi.new
|
6812
7554
|
|
@@ -6866,7 +7608,7 @@ Name | Type | Description | Notes
|
|
6866
7608
|
|
6867
7609
|
### Authorization
|
6868
7610
|
|
6869
|
-
|
7611
|
+
[api_key](../README.md#api_key)
|
6870
7612
|
|
6871
7613
|
### HTTP request headers
|
6872
7614
|
|
@@ -6886,6 +7628,13 @@ Add a new document<br><br>
|
|
6886
7628
|
```ruby
|
6887
7629
|
# load the gem
|
6888
7630
|
require 'budgea_client'
|
7631
|
+
# setup authorization
|
7632
|
+
BudgeaClient.configure do |config|
|
7633
|
+
# Configure API key authorization: api_key
|
7634
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7635
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7636
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7637
|
+
end
|
6889
7638
|
|
6890
7639
|
api_instance = BudgeaClient::ProvidersApi.new
|
6891
7640
|
|
@@ -6946,7 +7695,7 @@ Name | Type | Description | Notes
|
|
6946
7695
|
|
6947
7696
|
### Authorization
|
6948
7697
|
|
6949
|
-
|
7698
|
+
[api_key](../README.md#api_key)
|
6950
7699
|
|
6951
7700
|
### HTTP request headers
|
6952
7701
|
|
@@ -6966,6 +7715,13 @@ Attach an existing document to a transaction or a transactions_cluster
|
|
6966
7715
|
```ruby
|
6967
7716
|
# load the gem
|
6968
7717
|
require 'budgea_client'
|
7718
|
+
# setup authorization
|
7719
|
+
BudgeaClient.configure do |config|
|
7720
|
+
# Configure API key authorization: api_key
|
7721
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
7722
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
7723
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
7724
|
+
end
|
6969
7725
|
|
6970
7726
|
api_instance = BudgeaClient::ProvidersApi.new
|
6971
7727
|
|
@@ -7003,7 +7759,7 @@ Name | Type | Description | Notes
|
|
7003
7759
|
|
7004
7760
|
### Authorization
|
7005
7761
|
|
7006
|
-
|
7762
|
+
[api_key](../README.md#api_key)
|
7007
7763
|
|
7008
7764
|
### HTTP request headers
|
7009
7765
|
|