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/RecipientsApi.md
CHANGED
@@ -21,6 +21,13 @@ Add a recipient.
|
|
21
21
|
```ruby
|
22
22
|
# load the gem
|
23
23
|
require 'budgea_client'
|
24
|
+
# setup authorization
|
25
|
+
BudgeaClient.configure do |config|
|
26
|
+
# Configure API key authorization: api_key
|
27
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
28
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
29
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
30
|
+
end
|
24
31
|
|
25
32
|
api_instance = BudgeaClient::RecipientsApi.new
|
26
33
|
|
@@ -59,7 +66,7 @@ Name | Type | Description | Notes
|
|
59
66
|
|
60
67
|
### Authorization
|
61
68
|
|
62
|
-
|
69
|
+
[api_key](../README.md#api_key)
|
63
70
|
|
64
71
|
### HTTP request headers
|
65
72
|
|
@@ -79,6 +86,13 @@ Add a recipient.
|
|
79
86
|
```ruby
|
80
87
|
# load the gem
|
81
88
|
require 'budgea_client'
|
89
|
+
# setup authorization
|
90
|
+
BudgeaClient.configure do |config|
|
91
|
+
# Configure API key authorization: api_key
|
92
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
93
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
94
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
95
|
+
end
|
82
96
|
|
83
97
|
api_instance = BudgeaClient::RecipientsApi.new
|
84
98
|
|
@@ -120,7 +134,7 @@ Name | Type | Description | Notes
|
|
120
134
|
|
121
135
|
### Authorization
|
122
136
|
|
123
|
-
|
137
|
+
[api_key](../README.md#api_key)
|
124
138
|
|
125
139
|
### HTTP request headers
|
126
140
|
|
@@ -140,6 +154,13 @@ Add a recipient.
|
|
140
154
|
```ruby
|
141
155
|
# load the gem
|
142
156
|
require 'budgea_client'
|
157
|
+
# setup authorization
|
158
|
+
BudgeaClient.configure do |config|
|
159
|
+
# Configure API key authorization: api_key
|
160
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
161
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
162
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
163
|
+
end
|
143
164
|
|
144
165
|
api_instance = BudgeaClient::RecipientsApi.new
|
145
166
|
|
@@ -178,7 +199,7 @@ Name | Type | Description | Notes
|
|
178
199
|
|
179
200
|
### Authorization
|
180
201
|
|
181
|
-
|
202
|
+
[api_key](../README.md#api_key)
|
182
203
|
|
183
204
|
### HTTP request headers
|
184
205
|
|
@@ -198,6 +219,13 @@ Add a recipient.
|
|
198
219
|
```ruby
|
199
220
|
# load the gem
|
200
221
|
require 'budgea_client'
|
222
|
+
# setup authorization
|
223
|
+
BudgeaClient.configure do |config|
|
224
|
+
# Configure API key authorization: api_key
|
225
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
226
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
227
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
228
|
+
end
|
201
229
|
|
202
230
|
api_instance = BudgeaClient::RecipientsApi.new
|
203
231
|
|
@@ -233,7 +261,7 @@ Name | Type | Description | Notes
|
|
233
261
|
|
234
262
|
### Authorization
|
235
263
|
|
236
|
-
|
264
|
+
[api_key](../README.md#api_key)
|
237
265
|
|
238
266
|
### HTTP request headers
|
239
267
|
|
data/docs/TermsApi.md
CHANGED
@@ -21,6 +21,13 @@ Return the current terms and the content of the associated file
|
|
21
21
|
```ruby
|
22
22
|
# load the gem
|
23
23
|
require 'budgea_client'
|
24
|
+
# setup authorization
|
25
|
+
BudgeaClient.configure do |config|
|
26
|
+
# Configure API key authorization: api_key
|
27
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
28
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
29
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
30
|
+
end
|
24
31
|
|
25
32
|
api_instance = BudgeaClient::TermsApi.new
|
26
33
|
|
@@ -49,7 +56,7 @@ Name | Type | Description | Notes
|
|
49
56
|
|
50
57
|
### Authorization
|
51
58
|
|
52
|
-
|
59
|
+
[api_key](../README.md#api_key)
|
53
60
|
|
54
61
|
### HTTP request headers
|
55
62
|
|
@@ -69,6 +76,13 @@ Register a version of 'Terms of Service' in database
|
|
69
76
|
```ruby
|
70
77
|
# load the gem
|
71
78
|
require 'budgea_client'
|
79
|
+
# setup authorization
|
80
|
+
BudgeaClient.configure do |config|
|
81
|
+
# Configure API key authorization: api_key
|
82
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
83
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
84
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
85
|
+
end
|
72
86
|
|
73
87
|
api_instance = BudgeaClient::TermsApi.new
|
74
88
|
|
@@ -101,7 +115,7 @@ Name | Type | Description | Notes
|
|
101
115
|
|
102
116
|
### Authorization
|
103
117
|
|
104
|
-
|
118
|
+
[api_key](../README.md#api_key)
|
105
119
|
|
106
120
|
### HTTP request headers
|
107
121
|
|
@@ -121,6 +135,13 @@ Get active terms object for a specific user, only one terms can be active
|
|
121
135
|
```ruby
|
122
136
|
# load the gem
|
123
137
|
require 'budgea_client'
|
138
|
+
# setup authorization
|
139
|
+
BudgeaClient.configure do |config|
|
140
|
+
# Configure API key authorization: api_key
|
141
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
142
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
143
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
144
|
+
end
|
124
145
|
|
125
146
|
api_instance = BudgeaClient::TermsApi.new
|
126
147
|
|
@@ -152,7 +173,7 @@ Name | Type | Description | Notes
|
|
152
173
|
|
153
174
|
### Authorization
|
154
175
|
|
155
|
-
|
176
|
+
[api_key](../README.md#api_key)
|
156
177
|
|
157
178
|
### HTTP request headers
|
158
179
|
|
@@ -172,6 +193,13 @@ Register user's consent for a specific terms id
|
|
172
193
|
```ruby
|
173
194
|
# load the gem
|
174
195
|
require 'budgea_client'
|
196
|
+
# setup authorization
|
197
|
+
BudgeaClient.configure do |config|
|
198
|
+
# Configure API key authorization: api_key
|
199
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
200
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
201
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
202
|
+
end
|
175
203
|
|
176
204
|
api_instance = BudgeaClient::TermsApi.new
|
177
205
|
|
@@ -207,7 +235,7 @@ Name | Type | Description | Notes
|
|
207
235
|
|
208
236
|
### Authorization
|
209
237
|
|
210
|
-
|
238
|
+
[api_key](../README.md#api_key)
|
211
239
|
|
212
240
|
### HTTP request headers
|
213
241
|
|
data/docs/TransfersApi.md
CHANGED
@@ -57,6 +57,13 @@ Returns the list of recipients
|
|
57
57
|
```ruby
|
58
58
|
# load the gem
|
59
59
|
require 'budgea_client'
|
60
|
+
# setup authorization
|
61
|
+
BudgeaClient.configure do |config|
|
62
|
+
# Configure API key authorization: api_key
|
63
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
64
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
65
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
66
|
+
end
|
60
67
|
|
61
68
|
api_instance = BudgeaClient::TransfersApi.new
|
62
69
|
|
@@ -91,7 +98,7 @@ Name | Type | Description | Notes
|
|
91
98
|
|
92
99
|
### Authorization
|
93
100
|
|
94
|
-
|
101
|
+
[api_key](../README.md#api_key)
|
95
102
|
|
96
103
|
### HTTP request headers
|
97
104
|
|
@@ -111,6 +118,13 @@ Continue addition of a recipient.
|
|
111
118
|
```ruby
|
112
119
|
# load the gem
|
113
120
|
require 'budgea_client'
|
121
|
+
# setup authorization
|
122
|
+
BudgeaClient.configure do |config|
|
123
|
+
# Configure API key authorization: api_key
|
124
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
125
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
126
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
127
|
+
end
|
114
128
|
|
115
129
|
api_instance = BudgeaClient::TransfersApi.new
|
116
130
|
|
@@ -148,7 +162,7 @@ Name | Type | Description | Notes
|
|
148
162
|
|
149
163
|
### Authorization
|
150
164
|
|
151
|
-
|
165
|
+
[api_key](../README.md#api_key)
|
152
166
|
|
153
167
|
### HTTP request headers
|
154
168
|
|
@@ -168,6 +182,13 @@ Get transfers
|
|
168
182
|
```ruby
|
169
183
|
# load the gem
|
170
184
|
require 'budgea_client'
|
185
|
+
# setup authorization
|
186
|
+
BudgeaClient.configure do |config|
|
187
|
+
# Configure API key authorization: api_key
|
188
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
189
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
190
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
191
|
+
end
|
171
192
|
|
172
193
|
api_instance = BudgeaClient::TransfersApi.new
|
173
194
|
|
@@ -207,7 +228,7 @@ Name | Type | Description | Notes
|
|
207
228
|
|
208
229
|
### Authorization
|
209
230
|
|
210
|
-
|
231
|
+
[api_key](../README.md#api_key)
|
211
232
|
|
212
233
|
### HTTP request headers
|
213
234
|
|
@@ -227,6 +248,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
227
248
|
```ruby
|
228
249
|
# load the gem
|
229
250
|
require 'budgea_client'
|
251
|
+
# setup authorization
|
252
|
+
BudgeaClient.configure do |config|
|
253
|
+
# Configure API key authorization: api_key
|
254
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
255
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
256
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
257
|
+
end
|
230
258
|
|
231
259
|
api_instance = BudgeaClient::TransfersApi.new
|
232
260
|
|
@@ -267,7 +295,7 @@ Name | Type | Description | Notes
|
|
267
295
|
|
268
296
|
### Authorization
|
269
297
|
|
270
|
-
|
298
|
+
[api_key](../README.md#api_key)
|
271
299
|
|
272
300
|
### HTTP request headers
|
273
301
|
|
@@ -287,6 +315,13 @@ Execute or edit a Transfer.
|
|
287
315
|
```ruby
|
288
316
|
# load the gem
|
289
317
|
require 'budgea_client'
|
318
|
+
# setup authorization
|
319
|
+
BudgeaClient.configure do |config|
|
320
|
+
# Configure API key authorization: api_key
|
321
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
322
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
323
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
324
|
+
end
|
290
325
|
|
291
326
|
api_instance = BudgeaClient::TransfersApi.new
|
292
327
|
|
@@ -329,7 +364,7 @@ Name | Type | Description | Notes
|
|
329
364
|
|
330
365
|
### Authorization
|
331
366
|
|
332
|
-
|
367
|
+
[api_key](../README.md#api_key)
|
333
368
|
|
334
369
|
### HTTP request headers
|
335
370
|
|
@@ -349,6 +384,13 @@ Create a transfer object.
|
|
349
384
|
```ruby
|
350
385
|
# load the gem
|
351
386
|
require 'budgea_client'
|
387
|
+
# setup authorization
|
388
|
+
BudgeaClient.configure do |config|
|
389
|
+
# Configure API key authorization: api_key
|
390
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
391
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
392
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
393
|
+
end
|
352
394
|
|
353
395
|
api_instance = BudgeaClient::TransfersApi.new
|
354
396
|
|
@@ -393,7 +435,7 @@ Name | Type | Description | Notes
|
|
393
435
|
|
394
436
|
### Authorization
|
395
437
|
|
396
|
-
|
438
|
+
[api_key](../README.md#api_key)
|
397
439
|
|
398
440
|
### HTTP request headers
|
399
441
|
|
@@ -413,6 +455,13 @@ Get transfers
|
|
413
455
|
```ruby
|
414
456
|
# load the gem
|
415
457
|
require 'budgea_client'
|
458
|
+
# setup authorization
|
459
|
+
BudgeaClient.configure do |config|
|
460
|
+
# Configure API key authorization: api_key
|
461
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
462
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
463
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
464
|
+
end
|
416
465
|
|
417
466
|
api_instance = BudgeaClient::TransfersApi.new
|
418
467
|
|
@@ -449,7 +498,7 @@ Name | Type | Description | Notes
|
|
449
498
|
|
450
499
|
### Authorization
|
451
500
|
|
452
|
-
|
501
|
+
[api_key](../README.md#api_key)
|
453
502
|
|
454
503
|
### HTTP request headers
|
455
504
|
|
@@ -469,6 +518,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
469
518
|
```ruby
|
470
519
|
# load the gem
|
471
520
|
require 'budgea_client'
|
521
|
+
# setup authorization
|
522
|
+
BudgeaClient.configure do |config|
|
523
|
+
# Configure API key authorization: api_key
|
524
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
525
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
526
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
527
|
+
end
|
472
528
|
|
473
529
|
api_instance = BudgeaClient::TransfersApi.new
|
474
530
|
|
@@ -506,7 +562,7 @@ Name | Type | Description | Notes
|
|
506
562
|
|
507
563
|
### Authorization
|
508
564
|
|
509
|
-
|
565
|
+
[api_key](../README.md#api_key)
|
510
566
|
|
511
567
|
### HTTP request headers
|
512
568
|
|
@@ -526,6 +582,13 @@ Execute or edit a Transfer.
|
|
526
582
|
```ruby
|
527
583
|
# load the gem
|
528
584
|
require 'budgea_client'
|
585
|
+
# setup authorization
|
586
|
+
BudgeaClient.configure do |config|
|
587
|
+
# Configure API key authorization: api_key
|
588
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
589
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
590
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
591
|
+
end
|
529
592
|
|
530
593
|
api_instance = BudgeaClient::TransfersApi.new
|
531
594
|
|
@@ -565,7 +628,7 @@ Name | Type | Description | Notes
|
|
565
628
|
|
566
629
|
### Authorization
|
567
630
|
|
568
|
-
|
631
|
+
[api_key](../README.md#api_key)
|
569
632
|
|
570
633
|
### HTTP request headers
|
571
634
|
|
@@ -585,6 +648,13 @@ Create a transfer object.
|
|
585
648
|
```ruby
|
586
649
|
# load the gem
|
587
650
|
require 'budgea_client'
|
651
|
+
# setup authorization
|
652
|
+
BudgeaClient.configure do |config|
|
653
|
+
# Configure API key authorization: api_key
|
654
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
655
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
656
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
657
|
+
end
|
588
658
|
|
589
659
|
api_instance = BudgeaClient::TransfersApi.new
|
590
660
|
|
@@ -626,7 +696,7 @@ Name | Type | Description | Notes
|
|
626
696
|
|
627
697
|
### Authorization
|
628
698
|
|
629
|
-
|
699
|
+
[api_key](../README.md#api_key)
|
630
700
|
|
631
701
|
### HTTP request headers
|
632
702
|
|
@@ -646,6 +716,13 @@ Returns the list of recipients
|
|
646
716
|
```ruby
|
647
717
|
# load the gem
|
648
718
|
require 'budgea_client'
|
719
|
+
# setup authorization
|
720
|
+
BudgeaClient.configure do |config|
|
721
|
+
# Configure API key authorization: api_key
|
722
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
723
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
724
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
725
|
+
end
|
649
726
|
|
650
727
|
api_instance = BudgeaClient::TransfersApi.new
|
651
728
|
|
@@ -683,7 +760,7 @@ Name | Type | Description | Notes
|
|
683
760
|
|
684
761
|
### Authorization
|
685
762
|
|
686
|
-
|
763
|
+
[api_key](../README.md#api_key)
|
687
764
|
|
688
765
|
### HTTP request headers
|
689
766
|
|
@@ -703,6 +780,13 @@ Continue addition of a recipient.
|
|
703
780
|
```ruby
|
704
781
|
# load the gem
|
705
782
|
require 'budgea_client'
|
783
|
+
# setup authorization
|
784
|
+
BudgeaClient.configure do |config|
|
785
|
+
# Configure API key authorization: api_key
|
786
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
787
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
788
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
789
|
+
end
|
706
790
|
|
707
791
|
api_instance = BudgeaClient::TransfersApi.new
|
708
792
|
|
@@ -743,7 +827,7 @@ Name | Type | Description | Notes
|
|
743
827
|
|
744
828
|
### Authorization
|
745
829
|
|
746
|
-
|
830
|
+
[api_key](../README.md#api_key)
|
747
831
|
|
748
832
|
### HTTP request headers
|
749
833
|
|
@@ -763,6 +847,13 @@ Get transfers
|
|
763
847
|
```ruby
|
764
848
|
# load the gem
|
765
849
|
require 'budgea_client'
|
850
|
+
# setup authorization
|
851
|
+
BudgeaClient.configure do |config|
|
852
|
+
# Configure API key authorization: api_key
|
853
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
854
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
855
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
856
|
+
end
|
766
857
|
|
767
858
|
api_instance = BudgeaClient::TransfersApi.new
|
768
859
|
|
@@ -805,7 +896,7 @@ Name | Type | Description | Notes
|
|
805
896
|
|
806
897
|
### Authorization
|
807
898
|
|
808
|
-
|
899
|
+
[api_key](../README.md#api_key)
|
809
900
|
|
810
901
|
### HTTP request headers
|
811
902
|
|
@@ -825,6 +916,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
825
916
|
```ruby
|
826
917
|
# load the gem
|
827
918
|
require 'budgea_client'
|
919
|
+
# setup authorization
|
920
|
+
BudgeaClient.configure do |config|
|
921
|
+
# Configure API key authorization: api_key
|
922
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
923
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
924
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
925
|
+
end
|
828
926
|
|
829
927
|
api_instance = BudgeaClient::TransfersApi.new
|
830
928
|
|
@@ -868,7 +966,7 @@ Name | Type | Description | Notes
|
|
868
966
|
|
869
967
|
### Authorization
|
870
968
|
|
871
|
-
|
969
|
+
[api_key](../README.md#api_key)
|
872
970
|
|
873
971
|
### HTTP request headers
|
874
972
|
|
@@ -888,6 +986,13 @@ Execute or edit a Transfer.
|
|
888
986
|
```ruby
|
889
987
|
# load the gem
|
890
988
|
require 'budgea_client'
|
989
|
+
# setup authorization
|
990
|
+
BudgeaClient.configure do |config|
|
991
|
+
# Configure API key authorization: api_key
|
992
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
993
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
994
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
995
|
+
end
|
891
996
|
|
892
997
|
api_instance = BudgeaClient::TransfersApi.new
|
893
998
|
|
@@ -933,7 +1038,7 @@ Name | Type | Description | Notes
|
|
933
1038
|
|
934
1039
|
### Authorization
|
935
1040
|
|
936
|
-
|
1041
|
+
[api_key](../README.md#api_key)
|
937
1042
|
|
938
1043
|
### HTTP request headers
|
939
1044
|
|
@@ -953,6 +1058,13 @@ Create a transfer object.
|
|
953
1058
|
```ruby
|
954
1059
|
# load the gem
|
955
1060
|
require 'budgea_client'
|
1061
|
+
# setup authorization
|
1062
|
+
BudgeaClient.configure do |config|
|
1063
|
+
# Configure API key authorization: api_key
|
1064
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1065
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1066
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1067
|
+
end
|
956
1068
|
|
957
1069
|
api_instance = BudgeaClient::TransfersApi.new
|
958
1070
|
|
@@ -1000,7 +1112,7 @@ Name | Type | Description | Notes
|
|
1000
1112
|
|
1001
1113
|
### Authorization
|
1002
1114
|
|
1003
|
-
|
1115
|
+
[api_key](../README.md#api_key)
|
1004
1116
|
|
1005
1117
|
### HTTP request headers
|
1006
1118
|
|
@@ -1020,6 +1132,13 @@ Get transfers
|
|
1020
1132
|
```ruby
|
1021
1133
|
# load the gem
|
1022
1134
|
require 'budgea_client'
|
1135
|
+
# setup authorization
|
1136
|
+
BudgeaClient.configure do |config|
|
1137
|
+
# Configure API key authorization: api_key
|
1138
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1139
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1140
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1141
|
+
end
|
1023
1142
|
|
1024
1143
|
api_instance = BudgeaClient::TransfersApi.new
|
1025
1144
|
|
@@ -1059,7 +1178,7 @@ Name | Type | Description | Notes
|
|
1059
1178
|
|
1060
1179
|
### Authorization
|
1061
1180
|
|
1062
|
-
|
1181
|
+
[api_key](../README.md#api_key)
|
1063
1182
|
|
1064
1183
|
### HTTP request headers
|
1065
1184
|
|
@@ -1079,6 +1198,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
1079
1198
|
```ruby
|
1080
1199
|
# load the gem
|
1081
1200
|
require 'budgea_client'
|
1201
|
+
# setup authorization
|
1202
|
+
BudgeaClient.configure do |config|
|
1203
|
+
# Configure API key authorization: api_key
|
1204
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1205
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1206
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1207
|
+
end
|
1082
1208
|
|
1083
1209
|
api_instance = BudgeaClient::TransfersApi.new
|
1084
1210
|
|
@@ -1119,7 +1245,7 @@ Name | Type | Description | Notes
|
|
1119
1245
|
|
1120
1246
|
### Authorization
|
1121
1247
|
|
1122
|
-
|
1248
|
+
[api_key](../README.md#api_key)
|
1123
1249
|
|
1124
1250
|
### HTTP request headers
|
1125
1251
|
|
@@ -1139,6 +1265,13 @@ Execute or edit a Transfer.
|
|
1139
1265
|
```ruby
|
1140
1266
|
# load the gem
|
1141
1267
|
require 'budgea_client'
|
1268
|
+
# setup authorization
|
1269
|
+
BudgeaClient.configure do |config|
|
1270
|
+
# Configure API key authorization: api_key
|
1271
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1272
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1273
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1274
|
+
end
|
1142
1275
|
|
1143
1276
|
api_instance = BudgeaClient::TransfersApi.new
|
1144
1277
|
|
@@ -1181,7 +1314,7 @@ Name | Type | Description | Notes
|
|
1181
1314
|
|
1182
1315
|
### Authorization
|
1183
1316
|
|
1184
|
-
|
1317
|
+
[api_key](../README.md#api_key)
|
1185
1318
|
|
1186
1319
|
### HTTP request headers
|
1187
1320
|
|
@@ -1201,6 +1334,13 @@ Create a transfer object.
|
|
1201
1334
|
```ruby
|
1202
1335
|
# load the gem
|
1203
1336
|
require 'budgea_client'
|
1337
|
+
# setup authorization
|
1338
|
+
BudgeaClient.configure do |config|
|
1339
|
+
# Configure API key authorization: api_key
|
1340
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1341
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1342
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1343
|
+
end
|
1204
1344
|
|
1205
1345
|
api_instance = BudgeaClient::TransfersApi.new
|
1206
1346
|
|
@@ -1245,7 +1385,7 @@ Name | Type | Description | Notes
|
|
1245
1385
|
|
1246
1386
|
### Authorization
|
1247
1387
|
|
1248
|
-
|
1388
|
+
[api_key](../README.md#api_key)
|
1249
1389
|
|
1250
1390
|
### HTTP request headers
|
1251
1391
|
|
@@ -1265,6 +1405,13 @@ Returns the list of recipients
|
|
1265
1405
|
```ruby
|
1266
1406
|
# load the gem
|
1267
1407
|
require 'budgea_client'
|
1408
|
+
# setup authorization
|
1409
|
+
BudgeaClient.configure do |config|
|
1410
|
+
# Configure API key authorization: api_key
|
1411
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1412
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1413
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1414
|
+
end
|
1268
1415
|
|
1269
1416
|
api_instance = BudgeaClient::TransfersApi.new
|
1270
1417
|
|
@@ -1299,7 +1446,7 @@ Name | Type | Description | Notes
|
|
1299
1446
|
|
1300
1447
|
### Authorization
|
1301
1448
|
|
1302
|
-
|
1449
|
+
[api_key](../README.md#api_key)
|
1303
1450
|
|
1304
1451
|
### HTTP request headers
|
1305
1452
|
|
@@ -1319,6 +1466,13 @@ Continue addition of a recipient.
|
|
1319
1466
|
```ruby
|
1320
1467
|
# load the gem
|
1321
1468
|
require 'budgea_client'
|
1469
|
+
# setup authorization
|
1470
|
+
BudgeaClient.configure do |config|
|
1471
|
+
# Configure API key authorization: api_key
|
1472
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1473
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1474
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1475
|
+
end
|
1322
1476
|
|
1323
1477
|
api_instance = BudgeaClient::TransfersApi.new
|
1324
1478
|
|
@@ -1356,7 +1510,7 @@ Name | Type | Description | Notes
|
|
1356
1510
|
|
1357
1511
|
### Authorization
|
1358
1512
|
|
1359
|
-
|
1513
|
+
[api_key](../README.md#api_key)
|
1360
1514
|
|
1361
1515
|
### HTTP request headers
|
1362
1516
|
|
@@ -1376,6 +1530,13 @@ Get transfers
|
|
1376
1530
|
```ruby
|
1377
1531
|
# load the gem
|
1378
1532
|
require 'budgea_client'
|
1533
|
+
# setup authorization
|
1534
|
+
BudgeaClient.configure do |config|
|
1535
|
+
# Configure API key authorization: api_key
|
1536
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1537
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1538
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1539
|
+
end
|
1379
1540
|
|
1380
1541
|
api_instance = BudgeaClient::TransfersApi.new
|
1381
1542
|
|
@@ -1415,7 +1576,7 @@ Name | Type | Description | Notes
|
|
1415
1576
|
|
1416
1577
|
### Authorization
|
1417
1578
|
|
1418
|
-
|
1579
|
+
[api_key](../README.md#api_key)
|
1419
1580
|
|
1420
1581
|
### HTTP request headers
|
1421
1582
|
|
@@ -1435,6 +1596,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
1435
1596
|
```ruby
|
1436
1597
|
# load the gem
|
1437
1598
|
require 'budgea_client'
|
1599
|
+
# setup authorization
|
1600
|
+
BudgeaClient.configure do |config|
|
1601
|
+
# Configure API key authorization: api_key
|
1602
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1603
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1604
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1605
|
+
end
|
1438
1606
|
|
1439
1607
|
api_instance = BudgeaClient::TransfersApi.new
|
1440
1608
|
|
@@ -1475,7 +1643,7 @@ Name | Type | Description | Notes
|
|
1475
1643
|
|
1476
1644
|
### Authorization
|
1477
1645
|
|
1478
|
-
|
1646
|
+
[api_key](../README.md#api_key)
|
1479
1647
|
|
1480
1648
|
### HTTP request headers
|
1481
1649
|
|
@@ -1495,6 +1663,13 @@ Execute or edit a Transfer.
|
|
1495
1663
|
```ruby
|
1496
1664
|
# load the gem
|
1497
1665
|
require 'budgea_client'
|
1666
|
+
# setup authorization
|
1667
|
+
BudgeaClient.configure do |config|
|
1668
|
+
# Configure API key authorization: api_key
|
1669
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1670
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1671
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1672
|
+
end
|
1498
1673
|
|
1499
1674
|
api_instance = BudgeaClient::TransfersApi.new
|
1500
1675
|
|
@@ -1537,7 +1712,7 @@ Name | Type | Description | Notes
|
|
1537
1712
|
|
1538
1713
|
### Authorization
|
1539
1714
|
|
1540
|
-
|
1715
|
+
[api_key](../README.md#api_key)
|
1541
1716
|
|
1542
1717
|
### HTTP request headers
|
1543
1718
|
|
@@ -1557,6 +1732,13 @@ Create a transfer object.
|
|
1557
1732
|
```ruby
|
1558
1733
|
# load the gem
|
1559
1734
|
require 'budgea_client'
|
1735
|
+
# setup authorization
|
1736
|
+
BudgeaClient.configure do |config|
|
1737
|
+
# Configure API key authorization: api_key
|
1738
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1739
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1740
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1741
|
+
end
|
1560
1742
|
|
1561
1743
|
api_instance = BudgeaClient::TransfersApi.new
|
1562
1744
|
|
@@ -1601,7 +1783,7 @@ Name | Type | Description | Notes
|
|
1601
1783
|
|
1602
1784
|
### Authorization
|
1603
1785
|
|
1604
|
-
|
1786
|
+
[api_key](../README.md#api_key)
|
1605
1787
|
|
1606
1788
|
### HTTP request headers
|
1607
1789
|
|
@@ -1621,6 +1803,13 @@ Get transfers
|
|
1621
1803
|
```ruby
|
1622
1804
|
# load the gem
|
1623
1805
|
require 'budgea_client'
|
1806
|
+
# setup authorization
|
1807
|
+
BudgeaClient.configure do |config|
|
1808
|
+
# Configure API key authorization: api_key
|
1809
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1810
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1811
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1812
|
+
end
|
1624
1813
|
|
1625
1814
|
api_instance = BudgeaClient::TransfersApi.new
|
1626
1815
|
|
@@ -1657,7 +1846,7 @@ Name | Type | Description | Notes
|
|
1657
1846
|
|
1658
1847
|
### Authorization
|
1659
1848
|
|
1660
|
-
|
1849
|
+
[api_key](../README.md#api_key)
|
1661
1850
|
|
1662
1851
|
### HTTP request headers
|
1663
1852
|
|
@@ -1677,6 +1866,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
1677
1866
|
```ruby
|
1678
1867
|
# load the gem
|
1679
1868
|
require 'budgea_client'
|
1869
|
+
# setup authorization
|
1870
|
+
BudgeaClient.configure do |config|
|
1871
|
+
# Configure API key authorization: api_key
|
1872
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1873
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1874
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1875
|
+
end
|
1680
1876
|
|
1681
1877
|
api_instance = BudgeaClient::TransfersApi.new
|
1682
1878
|
|
@@ -1714,7 +1910,7 @@ Name | Type | Description | Notes
|
|
1714
1910
|
|
1715
1911
|
### Authorization
|
1716
1912
|
|
1717
|
-
|
1913
|
+
[api_key](../README.md#api_key)
|
1718
1914
|
|
1719
1915
|
### HTTP request headers
|
1720
1916
|
|
@@ -1734,6 +1930,13 @@ Execute or edit a Transfer.
|
|
1734
1930
|
```ruby
|
1735
1931
|
# load the gem
|
1736
1932
|
require 'budgea_client'
|
1933
|
+
# setup authorization
|
1934
|
+
BudgeaClient.configure do |config|
|
1935
|
+
# Configure API key authorization: api_key
|
1936
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1937
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1938
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1939
|
+
end
|
1737
1940
|
|
1738
1941
|
api_instance = BudgeaClient::TransfersApi.new
|
1739
1942
|
|
@@ -1773,7 +1976,7 @@ Name | Type | Description | Notes
|
|
1773
1976
|
|
1774
1977
|
### Authorization
|
1775
1978
|
|
1776
|
-
|
1979
|
+
[api_key](../README.md#api_key)
|
1777
1980
|
|
1778
1981
|
### HTTP request headers
|
1779
1982
|
|
@@ -1793,6 +1996,13 @@ Create a transfer object.
|
|
1793
1996
|
```ruby
|
1794
1997
|
# load the gem
|
1795
1998
|
require 'budgea_client'
|
1999
|
+
# setup authorization
|
2000
|
+
BudgeaClient.configure do |config|
|
2001
|
+
# Configure API key authorization: api_key
|
2002
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2003
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2004
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2005
|
+
end
|
1796
2006
|
|
1797
2007
|
api_instance = BudgeaClient::TransfersApi.new
|
1798
2008
|
|
@@ -1834,7 +2044,7 @@ Name | Type | Description | Notes
|
|
1834
2044
|
|
1835
2045
|
### Authorization
|
1836
2046
|
|
1837
|
-
|
2047
|
+
[api_key](../README.md#api_key)
|
1838
2048
|
|
1839
2049
|
### HTTP request headers
|
1840
2050
|
|
@@ -1854,6 +2064,13 @@ Returns the list of recipients
|
|
1854
2064
|
```ruby
|
1855
2065
|
# load the gem
|
1856
2066
|
require 'budgea_client'
|
2067
|
+
# setup authorization
|
2068
|
+
BudgeaClient.configure do |config|
|
2069
|
+
# Configure API key authorization: api_key
|
2070
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2071
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2072
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2073
|
+
end
|
1857
2074
|
|
1858
2075
|
api_instance = BudgeaClient::TransfersApi.new
|
1859
2076
|
|
@@ -1885,7 +2102,7 @@ Name | Type | Description | Notes
|
|
1885
2102
|
|
1886
2103
|
### Authorization
|
1887
2104
|
|
1888
|
-
|
2105
|
+
[api_key](../README.md#api_key)
|
1889
2106
|
|
1890
2107
|
### HTTP request headers
|
1891
2108
|
|
@@ -1905,6 +2122,13 @@ Continue addition of a recipient.
|
|
1905
2122
|
```ruby
|
1906
2123
|
# load the gem
|
1907
2124
|
require 'budgea_client'
|
2125
|
+
# setup authorization
|
2126
|
+
BudgeaClient.configure do |config|
|
2127
|
+
# Configure API key authorization: api_key
|
2128
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2129
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2130
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2131
|
+
end
|
1908
2132
|
|
1909
2133
|
api_instance = BudgeaClient::TransfersApi.new
|
1910
2134
|
|
@@ -1939,7 +2163,7 @@ Name | Type | Description | Notes
|
|
1939
2163
|
|
1940
2164
|
### Authorization
|
1941
2165
|
|
1942
|
-
|
2166
|
+
[api_key](../README.md#api_key)
|
1943
2167
|
|
1944
2168
|
### HTTP request headers
|
1945
2169
|
|
@@ -1959,6 +2183,13 @@ Get transfers
|
|
1959
2183
|
```ruby
|
1960
2184
|
# load the gem
|
1961
2185
|
require 'budgea_client'
|
2186
|
+
# setup authorization
|
2187
|
+
BudgeaClient.configure do |config|
|
2188
|
+
# Configure API key authorization: api_key
|
2189
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2190
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2191
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2192
|
+
end
|
1962
2193
|
|
1963
2194
|
api_instance = BudgeaClient::TransfersApi.new
|
1964
2195
|
|
@@ -1995,7 +2226,7 @@ Name | Type | Description | Notes
|
|
1995
2226
|
|
1996
2227
|
### Authorization
|
1997
2228
|
|
1998
|
-
|
2229
|
+
[api_key](../README.md#api_key)
|
1999
2230
|
|
2000
2231
|
### HTTP request headers
|
2001
2232
|
|
@@ -2015,6 +2246,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
2015
2246
|
```ruby
|
2016
2247
|
# load the gem
|
2017
2248
|
require 'budgea_client'
|
2249
|
+
# setup authorization
|
2250
|
+
BudgeaClient.configure do |config|
|
2251
|
+
# Configure API key authorization: api_key
|
2252
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2253
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2254
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2255
|
+
end
|
2018
2256
|
|
2019
2257
|
api_instance = BudgeaClient::TransfersApi.new
|
2020
2258
|
|
@@ -2052,7 +2290,7 @@ Name | Type | Description | Notes
|
|
2052
2290
|
|
2053
2291
|
### Authorization
|
2054
2292
|
|
2055
|
-
|
2293
|
+
[api_key](../README.md#api_key)
|
2056
2294
|
|
2057
2295
|
### HTTP request headers
|
2058
2296
|
|
@@ -2072,6 +2310,13 @@ Execute or edit a Transfer.
|
|
2072
2310
|
```ruby
|
2073
2311
|
# load the gem
|
2074
2312
|
require 'budgea_client'
|
2313
|
+
# setup authorization
|
2314
|
+
BudgeaClient.configure do |config|
|
2315
|
+
# Configure API key authorization: api_key
|
2316
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2317
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2318
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2319
|
+
end
|
2075
2320
|
|
2076
2321
|
api_instance = BudgeaClient::TransfersApi.new
|
2077
2322
|
|
@@ -2111,7 +2356,7 @@ Name | Type | Description | Notes
|
|
2111
2356
|
|
2112
2357
|
### Authorization
|
2113
2358
|
|
2114
|
-
|
2359
|
+
[api_key](../README.md#api_key)
|
2115
2360
|
|
2116
2361
|
### HTTP request headers
|
2117
2362
|
|
@@ -2131,6 +2376,13 @@ Create a transfer object.
|
|
2131
2376
|
```ruby
|
2132
2377
|
# load the gem
|
2133
2378
|
require 'budgea_client'
|
2379
|
+
# setup authorization
|
2380
|
+
BudgeaClient.configure do |config|
|
2381
|
+
# Configure API key authorization: api_key
|
2382
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2383
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2384
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2385
|
+
end
|
2134
2386
|
|
2135
2387
|
api_instance = BudgeaClient::TransfersApi.new
|
2136
2388
|
|
@@ -2172,7 +2424,7 @@ Name | Type | Description | Notes
|
|
2172
2424
|
|
2173
2425
|
### Authorization
|
2174
2426
|
|
2175
|
-
|
2427
|
+
[api_key](../README.md#api_key)
|
2176
2428
|
|
2177
2429
|
### HTTP request headers
|
2178
2430
|
|
@@ -2192,6 +2444,13 @@ Get transfers
|
|
2192
2444
|
```ruby
|
2193
2445
|
# load the gem
|
2194
2446
|
require 'budgea_client'
|
2447
|
+
# setup authorization
|
2448
|
+
BudgeaClient.configure do |config|
|
2449
|
+
# Configure API key authorization: api_key
|
2450
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2451
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2452
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2453
|
+
end
|
2195
2454
|
|
2196
2455
|
api_instance = BudgeaClient::TransfersApi.new
|
2197
2456
|
|
@@ -2225,7 +2484,7 @@ Name | Type | Description | Notes
|
|
2225
2484
|
|
2226
2485
|
### Authorization
|
2227
2486
|
|
2228
|
-
|
2487
|
+
[api_key](../README.md#api_key)
|
2229
2488
|
|
2230
2489
|
### HTTP request headers
|
2231
2490
|
|
@@ -2245,6 +2504,13 @@ It is possible to cancel only a transfer in state 'created'.<br><br>
|
|
2245
2504
|
```ruby
|
2246
2505
|
# load the gem
|
2247
2506
|
require 'budgea_client'
|
2507
|
+
# setup authorization
|
2508
|
+
BudgeaClient.configure do |config|
|
2509
|
+
# Configure API key authorization: api_key
|
2510
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2511
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2512
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2513
|
+
end
|
2248
2514
|
|
2249
2515
|
api_instance = BudgeaClient::TransfersApi.new
|
2250
2516
|
|
@@ -2279,7 +2545,7 @@ Name | Type | Description | Notes
|
|
2279
2545
|
|
2280
2546
|
### Authorization
|
2281
2547
|
|
2282
|
-
|
2548
|
+
[api_key](../README.md#api_key)
|
2283
2549
|
|
2284
2550
|
### HTTP request headers
|
2285
2551
|
|
@@ -2299,6 +2565,13 @@ Execute or edit a Transfer.
|
|
2299
2565
|
```ruby
|
2300
2566
|
# load the gem
|
2301
2567
|
require 'budgea_client'
|
2568
|
+
# setup authorization
|
2569
|
+
BudgeaClient.configure do |config|
|
2570
|
+
# Configure API key authorization: api_key
|
2571
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2572
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2573
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2574
|
+
end
|
2302
2575
|
|
2303
2576
|
api_instance = BudgeaClient::TransfersApi.new
|
2304
2577
|
|
@@ -2335,7 +2608,7 @@ Name | Type | Description | Notes
|
|
2335
2608
|
|
2336
2609
|
### Authorization
|
2337
2610
|
|
2338
|
-
|
2611
|
+
[api_key](../README.md#api_key)
|
2339
2612
|
|
2340
2613
|
### HTTP request headers
|
2341
2614
|
|
@@ -2355,6 +2628,13 @@ Create a transfer object.
|
|
2355
2628
|
```ruby
|
2356
2629
|
# load the gem
|
2357
2630
|
require 'budgea_client'
|
2631
|
+
# setup authorization
|
2632
|
+
BudgeaClient.configure do |config|
|
2633
|
+
# Configure API key authorization: api_key
|
2634
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
2635
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
2636
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
2637
|
+
end
|
2358
2638
|
|
2359
2639
|
api_instance = BudgeaClient::TransfersApi.new
|
2360
2640
|
|
@@ -2393,7 +2673,7 @@ Name | Type | Description | Notes
|
|
2393
2673
|
|
2394
2674
|
### Authorization
|
2395
2675
|
|
2396
|
-
|
2676
|
+
[api_key](../README.md#api_key)
|
2397
2677
|
|
2398
2678
|
### HTTP request headers
|
2399
2679
|
|