budgea_client 1.4.4 → 2.0.0
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.lock +5 -5
- data/README.md +67 -725
- data/budgea_client.gemspec +15 -3
- data/budgea_openapi.json +2011 -524
- data/docs/Account.md +3 -1
- data/docs/AccountLog.md +2 -2
- data/docs/AdministrationApi.md +354 -34
- data/docs/AuthenticationApi.md +264 -18
- data/docs/BankCategory.md +1 -1
- data/docs/BanksApi.md +939 -550
- data/docs/Certificate.md +12 -0
- data/docs/Client.md +5 -2
- data/docs/Connection.md +1 -1
- data/docs/ConnectionLog.md +3 -2
- data/docs/ConnectionsApi.md +162 -103
- data/docs/Connector.md +21 -0
- data/docs/ConnectorCategory.md +9 -0
- data/docs/ConnectorLogo.md +1 -1
- data/docs/Currency.md +4 -0
- data/docs/DocumentsApi.md +350 -350
- data/docs/Field.md +3 -2
- data/docs/InlineResponse20010.md +1 -1
- data/docs/InlineResponse20011.md +1 -1
- data/docs/InlineResponse20012.md +1 -1
- data/docs/InlineResponse20013.md +1 -1
- data/docs/InlineResponse20014.md +1 -1
- data/docs/InlineResponse20015.md +1 -1
- data/docs/InlineResponse20016.md +1 -1
- data/docs/InlineResponse20017.md +1 -1
- data/docs/InlineResponse20018.md +1 -1
- data/docs/InlineResponse20019.md +1 -1
- data/docs/InlineResponse20020.md +1 -1
- data/docs/InlineResponse20021.md +1 -1
- data/docs/InlineResponse20022.md +1 -1
- data/docs/InlineResponse20023.md +1 -1
- data/docs/InlineResponse20024.md +1 -1
- data/docs/InlineResponse20025.md +1 -1
- data/docs/InlineResponse20026.md +1 -1
- data/docs/InlineResponse20027.md +1 -1
- data/docs/InlineResponse20028.md +1 -1
- data/docs/InlineResponse20029.md +1 -1
- data/docs/InlineResponse2003.md +2 -3
- data/docs/InlineResponse20030.md +1 -1
- data/docs/InlineResponse20031.md +1 -1
- data/docs/InlineResponse20032.md +1 -1
- data/docs/InlineResponse20033.md +1 -1
- data/docs/InlineResponse20034.md +8 -0
- data/docs/InlineResponse20035.md +8 -0
- data/docs/InlineResponse20036.md +8 -0
- data/docs/InlineResponse2004.md +0 -2
- data/docs/InlineResponse2005.md +5 -2
- data/docs/InlineResponse2006.md +2 -3
- data/docs/InlineResponse2007.md +3 -1
- data/docs/InlineResponse2008.md +1 -1
- data/docs/InlineResponse2009.md +1 -1
- data/docs/OCRApi.md +5 -5
- data/docs/OIDCApi.md +5 -5
- data/docs/PFMApi.md +122 -122
- data/docs/Pocket.md +1 -1
- data/docs/Profile.md +1 -1
- data/docs/Project.md +1 -1
- data/docs/ProvidersApi.md +602 -604
- data/docs/Recipient.md +3 -0
- data/docs/RecipientLog.md +14 -0
- data/docs/RecipientsApi.md +28 -20
- data/docs/Subscription.md +2 -1
- data/docs/TermsApi.md +13 -15
- data/docs/Transaction.md +8 -3
- data/docs/Transfer.md +1 -0
- data/docs/TransferLog.md +14 -0
- data/docs/TransfersApi.md +165 -141
- data/docs/UserAlert.md +2 -2
- data/docs/UsersManagementApi.md +24 -24
- data/docs/WealthApi.md +54 -54
- data/docs/WebhookLog.md +15 -0
- data/lib/budgea_client.rb +27 -3
- data/lib/budgea_client/api/administration_api.rb +425 -106
- data/lib/budgea_client/api/authentication_api.rb +287 -46
- data/lib/budgea_client/api/banks_api.rb +1271 -974
- data/lib/budgea_client/api/connections_api.rb +207 -156
- data/lib/budgea_client/api/documents_api.rb +627 -693
- data/lib/budgea_client/api/ocr_api.rb +24 -16
- data/lib/budgea_client/api/oidc_api.rb +23 -16
- data/lib/budgea_client/api/pfm_api.rb +219 -248
- data/lib/budgea_client/api/providers_api.rb +998 -1099
- data/lib/budgea_client/api/recipients_api.rb +52 -34
- data/lib/budgea_client/api/terms_api.rb +34 -31
- data/lib/budgea_client/api/transfers_api.rb +245 -239
- data/lib/budgea_client/api/users_management_api.rb +56 -58
- data/lib/budgea_client/api/wealth_api.rb +81 -85
- data/lib/budgea_client/api_client.rb +20 -11
- data/lib/budgea_client/api_error.rb +11 -1
- data/lib/budgea_client/configuration.rb +12 -2
- data/lib/budgea_client/models/access.rb +18 -13
- data/lib/budgea_client/models/account.rb +44 -23
- data/lib/budgea_client/models/account_log.rb +33 -28
- data/lib/budgea_client/models/account_type.rb +22 -17
- data/lib/budgea_client/models/alert.rb +21 -16
- data/lib/budgea_client/models/bank.rb +21 -16
- data/lib/budgea_client/models/bank_category.rb +19 -14
- data/lib/budgea_client/models/category.rb +22 -17
- data/lib/budgea_client/models/certificate.rb +244 -0
- data/lib/budgea_client/models/client.rb +53 -20
- data/lib/budgea_client/models/connection.rb +29 -24
- data/lib/budgea_client/models/connection_log.rb +39 -24
- data/lib/budgea_client/models/connector.rb +345 -0
- data/lib/budgea_client/models/connector_category.rb +206 -0
- data/lib/budgea_client/models/connector_logo.rb +29 -24
- data/lib/budgea_client/models/currency.rb +63 -16
- data/lib/budgea_client/models/device.rb +23 -18
- data/lib/budgea_client/models/document.rb +21 -16
- data/lib/budgea_client/models/document_type.rb +19 -14
- data/lib/budgea_client/models/field.rb +44 -27
- data/lib/budgea_client/models/field_value.rb +18 -13
- data/lib/budgea_client/models/file.rb +20 -15
- data/lib/budgea_client/models/group.rb +17 -12
- data/lib/budgea_client/models/hash_table.rb +20 -15
- data/lib/budgea_client/models/inline_response_200.rb +17 -12
- data/lib/budgea_client/models/inline_response_200_1.rb +18 -13
- data/lib/budgea_client/models/inline_response_200_10.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_11.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_12.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_13.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_14.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_15.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_16.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_17.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_18.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_19.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_2.rb +18 -13
- data/lib/budgea_client/models/inline_response_200_20.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_21.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_22.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_23.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_24.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_25.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_26.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_27.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_28.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_29.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_3.rb +37 -47
- data/lib/budgea_client/models/inline_response_200_30.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_31.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_32.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_33.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_34.rb +190 -0
- data/lib/budgea_client/models/inline_response_200_35.rb +190 -0
- data/lib/budgea_client/models/inline_response_200_36.rb +190 -0
- data/lib/budgea_client/models/inline_response_200_4.rb +20 -40
- data/lib/budgea_client/models/inline_response_200_5.rb +75 -30
- data/lib/budgea_client/models/inline_response_200_6.rb +37 -47
- data/lib/budgea_client/models/inline_response_200_7.rb +55 -21
- data/lib/budgea_client/models/inline_response_200_8.rb +27 -22
- data/lib/budgea_client/models/inline_response_200_9.rb +27 -22
- data/lib/budgea_client/models/investment.rb +20 -15
- data/lib/budgea_client/models/investment_value.rb +20 -15
- data/lib/budgea_client/models/invite.rb +18 -13
- data/lib/budgea_client/models/locked_user.rb +18 -13
- data/lib/budgea_client/models/oidc_whitelist.rb +18 -13
- data/lib/budgea_client/models/pocket.rb +22 -17
- data/lib/budgea_client/models/profile.rb +26 -20
- data/lib/budgea_client/models/project.rb +26 -21
- data/lib/budgea_client/models/project_type.rb +18 -13
- data/lib/budgea_client/models/recipient.rb +52 -17
- data/lib/budgea_client/models/recipient_log.rb +254 -0
- data/lib/budgea_client/models/security.rb +18 -13
- data/lib/budgea_client/models/subscription.rb +31 -21
- data/lib/budgea_client/models/terms_of_service.rb +19 -14
- data/lib/budgea_client/models/transaction.rb +83 -33
- data/lib/budgea_client/models/transaction_information.rb +19 -14
- data/lib/budgea_client/models/transactions_cluster.rb +21 -16
- data/lib/budgea_client/models/transfer.rb +32 -16
- data/lib/budgea_client/models/transfer_log.rb +254 -0
- data/lib/budgea_client/models/user.rb +22 -16
- data/lib/budgea_client/models/user_alert.rb +22 -16
- data/lib/budgea_client/models/webhook.rb +19 -14
- data/lib/budgea_client/models/webhook_log.rb +264 -0
- data/lib/budgea_client/version.rb +12 -2
- data/original_budgea_openapi.json +23188 -0
- data/spec/models/certificate_spec.rb +65 -0
- data/spec/models/connector_category_spec.rb +47 -0
- data/spec/models/connector_spec.rb +119 -0
- data/spec/models/inline_response_200_34_spec.rb +41 -0
- data/spec/models/inline_response_200_35_spec.rb +41 -0
- data/spec/models/inline_response_200_36_spec.rb +41 -0
- data/spec/models/recipient_log_spec.rb +77 -0
- data/spec/models/transfer_log_spec.rb +77 -0
- data/spec/models/webhook_log_spec.rb +83 -0
- metadata +52 -18
- data/pkg/budgea_client-1.3.9.gem +0 -0
- data/pkg/budgea_client-1.4.2.gem +0 -0
- data/pkg/budgea_client-1.4.3.gem +0 -0
data/docs/UserAlert.md
CHANGED
|
@@ -11,8 +11,8 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**balance_max** | **Float** | | [optional] [default to 10000.0]
|
|
12
12
|
**resume_enabled** | **BOOLEAN** | | [optional] [default to true]
|
|
13
13
|
**enabled** | **BOOLEAN** | | [optional] [default to true]
|
|
14
|
-
**value_type** | **String** | | [default to
|
|
15
|
-
**type** | **String** | | [default to
|
|
14
|
+
**value_type** | **String** | | [default to 'flat']
|
|
15
|
+
**type** | **String** | | [default to 'transactions']
|
|
16
16
|
**transaction_types** | **String** | | [optional]
|
|
17
17
|
**date_range** | **Integer** | | [optional]
|
|
18
18
|
**apply** | **String** | | [optional]
|
data/docs/UsersManagementApi.md
CHANGED
|
@@ -66,7 +66,7 @@ nil (empty response body)
|
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
# **users_get**
|
|
69
|
-
>
|
|
69
|
+
> InlineResponse20019 users_get(opts)
|
|
70
70
|
|
|
71
71
|
Get users
|
|
72
72
|
|
|
@@ -87,8 +87,8 @@ end
|
|
|
87
87
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
88
88
|
|
|
89
89
|
opts = {
|
|
90
|
-
search:
|
|
91
|
-
expand:
|
|
90
|
+
search: 'search_example', # String | searches a user by mail (if it contains no '@', '@biapi.pro' will be added at the end)
|
|
91
|
+
expand: 'expand_example' # String |
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
begin
|
|
@@ -109,7 +109,7 @@ Name | Type | Description | Notes
|
|
|
109
109
|
|
|
110
110
|
### Return type
|
|
111
111
|
|
|
112
|
-
[**
|
|
112
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
|
113
113
|
|
|
114
114
|
### Authorization
|
|
115
115
|
|
|
@@ -143,7 +143,7 @@ end
|
|
|
143
143
|
|
|
144
144
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
145
145
|
|
|
146
|
-
id_user =
|
|
146
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
begin
|
|
@@ -196,7 +196,7 @@ end
|
|
|
196
196
|
|
|
197
197
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
198
198
|
|
|
199
|
-
id_user =
|
|
199
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
200
200
|
|
|
201
201
|
|
|
202
202
|
begin
|
|
@@ -250,7 +250,7 @@ end
|
|
|
250
250
|
|
|
251
251
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
252
252
|
|
|
253
|
-
id_user =
|
|
253
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
254
254
|
|
|
255
255
|
|
|
256
256
|
begin
|
|
@@ -303,10 +303,10 @@ end
|
|
|
303
303
|
|
|
304
304
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
305
305
|
|
|
306
|
-
id_user =
|
|
306
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
307
307
|
|
|
308
308
|
opts = {
|
|
309
|
-
expand:
|
|
309
|
+
expand: 'expand_example' # String |
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
begin
|
|
@@ -361,10 +361,10 @@ end
|
|
|
361
361
|
|
|
362
362
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
363
363
|
|
|
364
|
-
id_user =
|
|
364
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
365
365
|
|
|
366
366
|
opts = {
|
|
367
|
-
expand:
|
|
367
|
+
expand: 'expand_example' # String |
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
begin
|
|
@@ -399,7 +399,7 @@ Name | Type | Description | Notes
|
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
# **users_id_user_profiles_get**
|
|
402
|
-
>
|
|
402
|
+
> InlineResponse20034 users_id_user_profiles_get(id_user, opts)
|
|
403
403
|
|
|
404
404
|
Get profiles
|
|
405
405
|
|
|
@@ -419,10 +419,10 @@ end
|
|
|
419
419
|
|
|
420
420
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
421
421
|
|
|
422
|
-
id_user =
|
|
422
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
423
423
|
|
|
424
424
|
opts = {
|
|
425
|
-
expand:
|
|
425
|
+
expand: 'expand_example' # String |
|
|
426
426
|
}
|
|
427
427
|
|
|
428
428
|
begin
|
|
@@ -443,7 +443,7 @@ Name | Type | Description | Notes
|
|
|
443
443
|
|
|
444
444
|
### Return type
|
|
445
445
|
|
|
446
|
-
[**
|
|
446
|
+
[**InlineResponse20034**](InlineResponse20034.md)
|
|
447
447
|
|
|
448
448
|
### Authorization
|
|
449
449
|
|
|
@@ -477,12 +477,12 @@ end
|
|
|
477
477
|
|
|
478
478
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
479
479
|
|
|
480
|
-
id_user =
|
|
480
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
481
481
|
|
|
482
482
|
id_profile = 56 # Integer |
|
|
483
483
|
|
|
484
484
|
opts = {
|
|
485
|
-
expand:
|
|
485
|
+
expand: 'expand_example' # String |
|
|
486
486
|
}
|
|
487
487
|
|
|
488
488
|
begin
|
|
@@ -538,10 +538,10 @@ end
|
|
|
538
538
|
|
|
539
539
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
540
540
|
|
|
541
|
-
id_user =
|
|
541
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
542
542
|
|
|
543
543
|
opts = {
|
|
544
|
-
expand:
|
|
544
|
+
expand: 'expand_example' # String |
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
begin
|
|
@@ -596,10 +596,10 @@ end
|
|
|
596
596
|
|
|
597
597
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
598
598
|
|
|
599
|
-
id_user =
|
|
599
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
600
600
|
|
|
601
601
|
opts = {
|
|
602
|
-
expand:
|
|
602
|
+
expand: 'expand_example' # String |
|
|
603
603
|
}
|
|
604
604
|
|
|
605
605
|
begin
|
|
@@ -654,9 +654,9 @@ end
|
|
|
654
654
|
|
|
655
655
|
api_instance = BudgeaClient::UsersManagementApi.new
|
|
656
656
|
|
|
657
|
-
id_user =
|
|
657
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
658
658
|
|
|
659
|
-
application =
|
|
659
|
+
application = 'application_example' # String | application name
|
|
660
660
|
|
|
661
661
|
|
|
662
662
|
begin
|
|
@@ -685,7 +685,7 @@ Name | Type | Description | Notes
|
|
|
685
685
|
|
|
686
686
|
### HTTP request headers
|
|
687
687
|
|
|
688
|
-
- **Content-Type**:
|
|
688
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
689
689
|
- **Accept**: application/json
|
|
690
690
|
|
|
691
691
|
|
data/docs/WealthApi.md
CHANGED
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
# **finance_securities_get**
|
|
24
|
-
>
|
|
24
|
+
> InlineResponse20015 finance_securities_get(opts)
|
|
25
25
|
|
|
26
26
|
Get securities
|
|
27
27
|
|
|
@@ -42,7 +42,7 @@ end
|
|
|
42
42
|
api_instance = BudgeaClient::WealthApi.new
|
|
43
43
|
|
|
44
44
|
opts = {
|
|
45
|
-
expand:
|
|
45
|
+
expand: 'expand_example' # String |
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
begin
|
|
@@ -62,7 +62,7 @@ Name | Type | Description | Notes
|
|
|
62
62
|
|
|
63
63
|
### Return type
|
|
64
64
|
|
|
65
|
-
[**
|
|
65
|
+
[**InlineResponse20015**](InlineResponse20015.md)
|
|
66
66
|
|
|
67
67
|
### Authorization
|
|
68
68
|
|
|
@@ -101,9 +101,9 @@ id_security = 56 # Integer |
|
|
|
101
101
|
opts = {
|
|
102
102
|
limit: 56, # Integer | limit number of results
|
|
103
103
|
offset: 56, # Integer | offset of first result
|
|
104
|
-
min_date: Date.parse(
|
|
105
|
-
max_date: Date.parse(
|
|
106
|
-
period:
|
|
104
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
105
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
106
|
+
period: 'period_example' # String | period to group logs
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
begin
|
|
@@ -141,7 +141,7 @@ nil (empty response body)
|
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
# **users_id_user_accounts_id_account_investments_get**
|
|
144
|
-
>
|
|
144
|
+
> InlineResponse20021 users_id_user_accounts_id_account_investments_get(id_user, id_account, opts)
|
|
145
145
|
|
|
146
146
|
Get investments
|
|
147
147
|
|
|
@@ -161,12 +161,12 @@ end
|
|
|
161
161
|
|
|
162
162
|
api_instance = BudgeaClient::WealthApi.new
|
|
163
163
|
|
|
164
|
-
id_user =
|
|
164
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
165
165
|
|
|
166
166
|
id_account = 56 # Integer |
|
|
167
167
|
|
|
168
168
|
opts = {
|
|
169
|
-
expand:
|
|
169
|
+
expand: 'expand_example' # String |
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
begin
|
|
@@ -188,7 +188,7 @@ Name | Type | Description | Notes
|
|
|
188
188
|
|
|
189
189
|
### Return type
|
|
190
190
|
|
|
191
|
-
[**
|
|
191
|
+
[**InlineResponse20021**](InlineResponse20021.md)
|
|
192
192
|
|
|
193
193
|
### Authorization
|
|
194
194
|
|
|
@@ -202,7 +202,7 @@ Name | Type | Description | Notes
|
|
|
202
202
|
|
|
203
203
|
|
|
204
204
|
# **users_id_user_accounts_id_account_investments_id_investment_history_get**
|
|
205
|
-
>
|
|
205
|
+
> InlineResponse20022 users_id_user_accounts_id_account_investments_id_investment_history_get(id_user, id_account, id_investment, opts)
|
|
206
206
|
|
|
207
207
|
Get investment values
|
|
208
208
|
|
|
@@ -222,14 +222,14 @@ end
|
|
|
222
222
|
|
|
223
223
|
api_instance = BudgeaClient::WealthApi.new
|
|
224
224
|
|
|
225
|
-
id_user =
|
|
225
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
226
226
|
|
|
227
227
|
id_account = 56 # Integer |
|
|
228
228
|
|
|
229
229
|
id_investment = 56 # Integer |
|
|
230
230
|
|
|
231
231
|
opts = {
|
|
232
|
-
expand:
|
|
232
|
+
expand: 'expand_example' # String |
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
begin
|
|
@@ -252,7 +252,7 @@ Name | Type | Description | Notes
|
|
|
252
252
|
|
|
253
253
|
### Return type
|
|
254
254
|
|
|
255
|
-
[**
|
|
255
|
+
[**InlineResponse20022**](InlineResponse20022.md)
|
|
256
256
|
|
|
257
257
|
### Authorization
|
|
258
258
|
|
|
@@ -286,7 +286,7 @@ end
|
|
|
286
286
|
|
|
287
287
|
api_instance = BudgeaClient::WealthApi.new
|
|
288
288
|
|
|
289
|
-
id_user =
|
|
289
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
290
290
|
|
|
291
291
|
id_account = 56 # Integer |
|
|
292
292
|
|
|
@@ -295,9 +295,9 @@ id_investment = 56 # Integer |
|
|
|
295
295
|
opts = {
|
|
296
296
|
limit: 56, # Integer | limit number of results
|
|
297
297
|
offset: 56, # Integer | offset of first result
|
|
298
|
-
min_date: Date.parse(
|
|
299
|
-
max_date: Date.parse(
|
|
300
|
-
period:
|
|
298
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
299
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
300
|
+
period: 'period_example' # String | period to group logs
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
begin
|
|
@@ -337,7 +337,7 @@ nil (empty response body)
|
|
|
337
337
|
|
|
338
338
|
|
|
339
339
|
# **users_id_user_connections_id_connection_accounts_id_account_investments_get**
|
|
340
|
-
>
|
|
340
|
+
> InlineResponse20021 users_id_user_connections_id_connection_accounts_id_account_investments_get(id_user, id_connection, id_account, opts)
|
|
341
341
|
|
|
342
342
|
Get investments
|
|
343
343
|
|
|
@@ -357,14 +357,14 @@ end
|
|
|
357
357
|
|
|
358
358
|
api_instance = BudgeaClient::WealthApi.new
|
|
359
359
|
|
|
360
|
-
id_user =
|
|
360
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
361
361
|
|
|
362
362
|
id_connection = 56 # Integer |
|
|
363
363
|
|
|
364
364
|
id_account = 56 # Integer |
|
|
365
365
|
|
|
366
366
|
opts = {
|
|
367
|
-
expand:
|
|
367
|
+
expand: 'expand_example' # String |
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
begin
|
|
@@ -387,7 +387,7 @@ Name | Type | Description | Notes
|
|
|
387
387
|
|
|
388
388
|
### Return type
|
|
389
389
|
|
|
390
|
-
[**
|
|
390
|
+
[**InlineResponse20021**](InlineResponse20021.md)
|
|
391
391
|
|
|
392
392
|
### Authorization
|
|
393
393
|
|
|
@@ -401,7 +401,7 @@ Name | Type | Description | Notes
|
|
|
401
401
|
|
|
402
402
|
|
|
403
403
|
# **users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get**
|
|
404
|
-
>
|
|
404
|
+
> InlineResponse20022 users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get(id_user, id_connection, id_account, id_investment, opts)
|
|
405
405
|
|
|
406
406
|
Get investment values
|
|
407
407
|
|
|
@@ -421,7 +421,7 @@ end
|
|
|
421
421
|
|
|
422
422
|
api_instance = BudgeaClient::WealthApi.new
|
|
423
423
|
|
|
424
|
-
id_user =
|
|
424
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
425
425
|
|
|
426
426
|
id_connection = 56 # Integer |
|
|
427
427
|
|
|
@@ -430,7 +430,7 @@ id_account = 56 # Integer |
|
|
|
430
430
|
id_investment = 56 # Integer |
|
|
431
431
|
|
|
432
432
|
opts = {
|
|
433
|
-
expand:
|
|
433
|
+
expand: 'expand_example' # String |
|
|
434
434
|
}
|
|
435
435
|
|
|
436
436
|
begin
|
|
@@ -454,7 +454,7 @@ Name | Type | Description | Notes
|
|
|
454
454
|
|
|
455
455
|
### Return type
|
|
456
456
|
|
|
457
|
-
[**
|
|
457
|
+
[**InlineResponse20022**](InlineResponse20022.md)
|
|
458
458
|
|
|
459
459
|
### Authorization
|
|
460
460
|
|
|
@@ -488,7 +488,7 @@ end
|
|
|
488
488
|
|
|
489
489
|
api_instance = BudgeaClient::WealthApi.new
|
|
490
490
|
|
|
491
|
-
id_user =
|
|
491
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
492
492
|
|
|
493
493
|
id_connection = 56 # Integer |
|
|
494
494
|
|
|
@@ -499,9 +499,9 @@ id_investment = 56 # Integer |
|
|
|
499
499
|
opts = {
|
|
500
500
|
limit: 56, # Integer | limit number of results
|
|
501
501
|
offset: 56, # Integer | offset of first result
|
|
502
|
-
min_date: Date.parse(
|
|
503
|
-
max_date: Date.parse(
|
|
504
|
-
period:
|
|
502
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
503
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
504
|
+
period: 'period_example' # String | period to group logs
|
|
505
505
|
}
|
|
506
506
|
|
|
507
507
|
begin
|
|
@@ -542,7 +542,7 @@ nil (empty response body)
|
|
|
542
542
|
|
|
543
543
|
|
|
544
544
|
# **users_id_user_connections_id_connection_investments_get**
|
|
545
|
-
>
|
|
545
|
+
> InlineResponse20021 users_id_user_connections_id_connection_investments_get(id_user, id_connection, opts)
|
|
546
546
|
|
|
547
547
|
Get investments
|
|
548
548
|
|
|
@@ -562,12 +562,12 @@ end
|
|
|
562
562
|
|
|
563
563
|
api_instance = BudgeaClient::WealthApi.new
|
|
564
564
|
|
|
565
|
-
id_user =
|
|
565
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
566
566
|
|
|
567
567
|
id_connection = 56 # Integer |
|
|
568
568
|
|
|
569
569
|
opts = {
|
|
570
|
-
expand:
|
|
570
|
+
expand: 'expand_example' # String |
|
|
571
571
|
}
|
|
572
572
|
|
|
573
573
|
begin
|
|
@@ -589,7 +589,7 @@ Name | Type | Description | Notes
|
|
|
589
589
|
|
|
590
590
|
### Return type
|
|
591
591
|
|
|
592
|
-
[**
|
|
592
|
+
[**InlineResponse20021**](InlineResponse20021.md)
|
|
593
593
|
|
|
594
594
|
### Authorization
|
|
595
595
|
|
|
@@ -603,7 +603,7 @@ Name | Type | Description | Notes
|
|
|
603
603
|
|
|
604
604
|
|
|
605
605
|
# **users_id_user_connections_id_connection_investments_id_investment_history_get**
|
|
606
|
-
>
|
|
606
|
+
> InlineResponse20022 users_id_user_connections_id_connection_investments_id_investment_history_get(id_user, id_connection, id_investment, opts)
|
|
607
607
|
|
|
608
608
|
Get investment values
|
|
609
609
|
|
|
@@ -623,14 +623,14 @@ end
|
|
|
623
623
|
|
|
624
624
|
api_instance = BudgeaClient::WealthApi.new
|
|
625
625
|
|
|
626
|
-
id_user =
|
|
626
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
627
627
|
|
|
628
628
|
id_connection = 56 # Integer |
|
|
629
629
|
|
|
630
630
|
id_investment = 56 # Integer |
|
|
631
631
|
|
|
632
632
|
opts = {
|
|
633
|
-
expand:
|
|
633
|
+
expand: 'expand_example' # String |
|
|
634
634
|
}
|
|
635
635
|
|
|
636
636
|
begin
|
|
@@ -653,7 +653,7 @@ Name | Type | Description | Notes
|
|
|
653
653
|
|
|
654
654
|
### Return type
|
|
655
655
|
|
|
656
|
-
[**
|
|
656
|
+
[**InlineResponse20022**](InlineResponse20022.md)
|
|
657
657
|
|
|
658
658
|
### Authorization
|
|
659
659
|
|
|
@@ -687,7 +687,7 @@ end
|
|
|
687
687
|
|
|
688
688
|
api_instance = BudgeaClient::WealthApi.new
|
|
689
689
|
|
|
690
|
-
id_user =
|
|
690
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
691
691
|
|
|
692
692
|
id_connection = 56 # Integer |
|
|
693
693
|
|
|
@@ -696,9 +696,9 @@ id_investment = 56 # Integer |
|
|
|
696
696
|
opts = {
|
|
697
697
|
limit: 56, # Integer | limit number of results
|
|
698
698
|
offset: 56, # Integer | offset of first result
|
|
699
|
-
min_date: Date.parse(
|
|
700
|
-
max_date: Date.parse(
|
|
701
|
-
period:
|
|
699
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
700
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
701
|
+
period: 'period_example' # String | period to group logs
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
begin
|
|
@@ -738,7 +738,7 @@ nil (empty response body)
|
|
|
738
738
|
|
|
739
739
|
|
|
740
740
|
# **users_id_user_investments_get**
|
|
741
|
-
>
|
|
741
|
+
> InlineResponse20021 users_id_user_investments_get(id_user, opts)
|
|
742
742
|
|
|
743
743
|
Get investments
|
|
744
744
|
|
|
@@ -758,10 +758,10 @@ end
|
|
|
758
758
|
|
|
759
759
|
api_instance = BudgeaClient::WealthApi.new
|
|
760
760
|
|
|
761
|
-
id_user =
|
|
761
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
762
762
|
|
|
763
763
|
opts = {
|
|
764
|
-
expand:
|
|
764
|
+
expand: 'expand_example' # String |
|
|
765
765
|
}
|
|
766
766
|
|
|
767
767
|
begin
|
|
@@ -782,7 +782,7 @@ Name | Type | Description | Notes
|
|
|
782
782
|
|
|
783
783
|
### Return type
|
|
784
784
|
|
|
785
|
-
[**
|
|
785
|
+
[**InlineResponse20021**](InlineResponse20021.md)
|
|
786
786
|
|
|
787
787
|
### Authorization
|
|
788
788
|
|
|
@@ -796,7 +796,7 @@ Name | Type | Description | Notes
|
|
|
796
796
|
|
|
797
797
|
|
|
798
798
|
# **users_id_user_investments_id_investment_history_get**
|
|
799
|
-
>
|
|
799
|
+
> InlineResponse20022 users_id_user_investments_id_investment_history_get(id_user, id_investment, opts)
|
|
800
800
|
|
|
801
801
|
Get investment values
|
|
802
802
|
|
|
@@ -816,12 +816,12 @@ end
|
|
|
816
816
|
|
|
817
817
|
api_instance = BudgeaClient::WealthApi.new
|
|
818
818
|
|
|
819
|
-
id_user =
|
|
819
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
820
820
|
|
|
821
821
|
id_investment = 56 # Integer |
|
|
822
822
|
|
|
823
823
|
opts = {
|
|
824
|
-
expand:
|
|
824
|
+
expand: 'expand_example' # String |
|
|
825
825
|
}
|
|
826
826
|
|
|
827
827
|
begin
|
|
@@ -843,7 +843,7 @@ Name | Type | Description | Notes
|
|
|
843
843
|
|
|
844
844
|
### Return type
|
|
845
845
|
|
|
846
|
-
[**
|
|
846
|
+
[**InlineResponse20022**](InlineResponse20022.md)
|
|
847
847
|
|
|
848
848
|
### Authorization
|
|
849
849
|
|
|
@@ -877,16 +877,16 @@ end
|
|
|
877
877
|
|
|
878
878
|
api_instance = BudgeaClient::WealthApi.new
|
|
879
879
|
|
|
880
|
-
id_user =
|
|
880
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
881
881
|
|
|
882
882
|
id_investment = 56 # Integer |
|
|
883
883
|
|
|
884
884
|
opts = {
|
|
885
885
|
limit: 56, # Integer | limit number of results
|
|
886
886
|
offset: 56, # Integer | offset of first result
|
|
887
|
-
min_date: Date.parse(
|
|
888
|
-
max_date: Date.parse(
|
|
889
|
-
period:
|
|
887
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
888
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
889
|
+
period: 'period_example' # String | period to group logs
|
|
890
890
|
}
|
|
891
891
|
|
|
892
892
|
begin
|