budgea_client 1.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 +7 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +89 -0
- data/README.md +619 -0
- data/Rakefile +13 -0
- data/budgea_client.gemspec +35 -0
- data/docs/Access.md +12 -0
- data/docs/Account.md +25 -0
- data/docs/AccountLog.md +15 -0
- data/docs/AccountType.md +15 -0
- data/docs/AdministrationApi.md +944 -0
- data/docs/Alert.md +15 -0
- data/docs/AuthenticationApi.md +398 -0
- data/docs/Bank.md +18 -0
- data/docs/BankCategory.md +9 -0
- data/docs/BanksApi.md +6558 -0
- data/docs/Category.md +17 -0
- data/docs/Client.md +18 -0
- data/docs/Connection.md +16 -0
- data/docs/ConnectionContact.md +17 -0
- data/docs/ConnectionLog.md +21 -0
- data/docs/ConnectionsApi.md +934 -0
- data/docs/ConnectorLogo.md +11 -0
- data/docs/Currency.md +10 -0
- data/docs/Device.md +14 -0
- data/docs/Document.md +29 -0
- data/docs/DocumentType.md +10 -0
- data/docs/DocumentsApi.md +5228 -0
- data/docs/Field.md +15 -0
- data/docs/File.md +11 -0
- data/docs/Group.md +15 -0
- data/docs/HashTable.md +11 -0
- data/docs/InlineResponse200.md +8 -0
- data/docs/InlineResponse2001.md +9 -0
- data/docs/InlineResponse20010.md +8 -0
- data/docs/InlineResponse20011.md +8 -0
- data/docs/InlineResponse20012.md +8 -0
- data/docs/InlineResponse20013.md +8 -0
- data/docs/InlineResponse20014.md +8 -0
- data/docs/InlineResponse20015.md +8 -0
- data/docs/InlineResponse20016.md +8 -0
- data/docs/InlineResponse20017.md +8 -0
- data/docs/InlineResponse20018.md +8 -0
- data/docs/InlineResponse20019.md +8 -0
- data/docs/InlineResponse2002.md +10 -0
- data/docs/InlineResponse20020.md +8 -0
- data/docs/InlineResponse20021.md +8 -0
- data/docs/InlineResponse20022.md +8 -0
- data/docs/InlineResponse20023.md +8 -0
- data/docs/InlineResponse20024.md +8 -0
- data/docs/InlineResponse20025.md +8 -0
- data/docs/InlineResponse20026.md +8 -0
- data/docs/InlineResponse20027.md +8 -0
- data/docs/InlineResponse20028.md +8 -0
- data/docs/InlineResponse20029.md +8 -0
- data/docs/InlineResponse2003.md +10 -0
- data/docs/InlineResponse20030.md +8 -0
- data/docs/InlineResponse20031.md +8 -0
- data/docs/InlineResponse20032.md +8 -0
- data/docs/InlineResponse20033.md +8 -0
- data/docs/InlineResponse2004.md +12 -0
- data/docs/InlineResponse2005.md +9 -0
- data/docs/InlineResponse2006.md +10 -0
- data/docs/InlineResponse2007.md +8 -0
- data/docs/InlineResponse2008.md +8 -0
- data/docs/InlineResponse2009.md +8 -0
- data/docs/Investment.md +32 -0
- data/docs/InvestmentValue.md +13 -0
- data/docs/Invite.md +13 -0
- data/docs/LockedUser.md +10 -0
- data/docs/OCRApi.md +117 -0
- data/docs/OIDCApi.md +167 -0
- data/docs/OidcWhitelist.md +9 -0
- data/docs/PFMApi.md +2204 -0
- data/docs/Pocket.md +17 -0
- data/docs/Profile.md +15 -0
- data/docs/Project.md +16 -0
- data/docs/ProjectType.md +10 -0
- data/docs/ProvidersApi.md +7014 -0
- data/docs/Recipient.md +22 -0
- data/docs/RecipientsApi.md +244 -0
- data/docs/Security.md +12 -0
- data/docs/Subscription.md +18 -0
- data/docs/TermsApi.md +218 -0
- data/docs/TermsOfService.md +12 -0
- data/docs/Transaction.md +33 -0
- data/docs/TransactionInformation.md +11 -0
- data/docs/TransactionsCluster.md +16 -0
- data/docs/Transfer.md +23 -0
- data/docs/TransfersApi.md +2404 -0
- data/docs/User.md +10 -0
- data/docs/UserAlert.md +21 -0
- data/docs/UsersManagementApi.md +608 -0
- data/docs/WealthApi.md +828 -0
- data/docs/Webhook.md +15 -0
- data/git_push.sh +55 -0
- data/lib/budgea_client.rb +118 -0
- data/lib/budgea_client/api/administration_api.rb +1059 -0
- data/lib/budgea_client/api/authentication_api.rb +467 -0
- data/lib/budgea_client/api/banks_api.rb +7837 -0
- data/lib/budgea_client/api/connections_api.rb +1088 -0
- data/lib/budgea_client/api/documents_api.rb +6637 -0
- data/lib/budgea_client/api/ocr_api.rb +141 -0
- data/lib/budgea_client/api/oidc_api.rb +195 -0
- data/lib/budgea_client/api/pfm_api.rb +2630 -0
- data/lib/budgea_client/api/providers_api.rb +8694 -0
- data/lib/budgea_client/api/recipients_api.rb +293 -0
- data/lib/budgea_client/api/terms_api.rb +245 -0
- data/lib/budgea_client/api/transfers_api.rb +2941 -0
- data/lib/budgea_client/api/users_management_api.rb +695 -0
- data/lib/budgea_client/api/wealth_api.rb +994 -0
- data/lib/budgea_client/api_client.rb +378 -0
- data/lib/budgea_client/api_error.rb +28 -0
- data/lib/budgea_client/configuration.rb +192 -0
- data/lib/budgea_client/models/access.rb +224 -0
- data/lib/budgea_client/models/account.rb +383 -0
- data/lib/budgea_client/models/account_log.rb +266 -0
- data/lib/budgea_client/models/account_type.rb +281 -0
- data/lib/budgea_client/models/alert.rb +273 -0
- data/lib/budgea_client/models/bank.rb +308 -0
- data/lib/budgea_client/models/bank_category.rb +201 -0
- data/lib/budgea_client/models/category.rb +299 -0
- data/lib/budgea_client/models/client.rb +305 -0
- data/lib/budgea_client/models/connection.rb +276 -0
- data/lib/budgea_client/models/connection_contact.rb +274 -0
- data/lib/budgea_client/models/connection_log.rb +324 -0
- data/lib/budgea_client/models/connector_logo.rb +223 -0
- data/lib/budgea_client/models/currency.rb +216 -0
- data/lib/budgea_client/models/device.rb +269 -0
- data/lib/budgea_client/models/document.rb +398 -0
- data/lib/budgea_client/models/document_type.rb +213 -0
- data/lib/budgea_client/models/field.rb +273 -0
- data/lib/budgea_client/models/file.rb +225 -0
- data/lib/budgea_client/models/group.rb +246 -0
- data/lib/budgea_client/models/hash_table.rb +227 -0
- data/lib/budgea_client/models/inline_response_200.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_1.rb +199 -0
- data/lib/budgea_client/models/inline_response_200_10.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_11.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_12.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_13.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_14.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_15.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_16.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_17.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_18.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_19.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_2.rb +209 -0
- data/lib/budgea_client/models/inline_response_200_20.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_21.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_22.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_23.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_24.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_25.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_26.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_27.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_28.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_29.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_3.rb +214 -0
- data/lib/budgea_client/models/inline_response_200_30.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_31.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_32.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_33.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_4.rb +239 -0
- data/lib/budgea_client/models/inline_response_200_5.rb +199 -0
- data/lib/budgea_client/models/inline_response_200_6.rb +214 -0
- data/lib/budgea_client/models/inline_response_200_7.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_8.rb +185 -0
- data/lib/budgea_client/models/inline_response_200_9.rb +185 -0
- data/lib/budgea_client/models/investment.rb +449 -0
- data/lib/budgea_client/models/investment_value.rb +249 -0
- data/lib/budgea_client/models/invite.rb +233 -0
- data/lib/budgea_client/models/locked_user.rb +206 -0
- data/lib/budgea_client/models/oidc_whitelist.rb +198 -0
- data/lib/budgea_client/models/pocket.rb +298 -0
- data/lib/budgea_client/models/profile.rb +308 -0
- data/lib/budgea_client/models/project.rb +301 -0
- data/lib/budgea_client/models/project_type.rb +206 -0
- data/lib/budgea_client/models/recipient.rb +343 -0
- data/lib/budgea_client/models/security.rb +229 -0
- data/lib/budgea_client/models/subscription.rb +299 -0
- data/lib/budgea_client/models/terms_of_service.rb +229 -0
- data/lib/budgea_client/models/transaction.rb +507 -0
- data/lib/budgea_client/models/transaction_information.rb +224 -0
- data/lib/budgea_client/models/transactions_cluster.rb +277 -0
- data/lib/budgea_client/models/transfer.rb +354 -0
- data/lib/budgea_client/models/user.rb +244 -0
- data/lib/budgea_client/models/user_alert.rb +333 -0
- data/lib/budgea_client/models/webhook.rb +264 -0
- data/lib/budgea_client/version.rb +5 -0
- data/pkg/budgea_client-1.0.0.gem +0 -0
- data/spec/api/administration_api_spec.rb +271 -0
- data/spec/api/authentication_api_spec.rb +126 -0
- data/spec/api/banks_api_spec.rb +1787 -0
- data/spec/api/connections_api_spec.rb +279 -0
- data/spec/api/documents_api_spec.rb +1557 -0
- data/spec/api/ocr_api_spec.rb +54 -0
- data/spec/api/oidc_api_spec.rb +65 -0
- data/spec/api/pfm_api_spec.rb +613 -0
- data/spec/api/providers_api_spec.rb +2029 -0
- data/spec/api/recipients_api_spec.rb +89 -0
- data/spec/api/terms_api_spec.rb +79 -0
- data/spec/api/transfers_api_spec.rb +661 -0
- data/spec/api/users_management_api_spec.rb +177 -0
- data/spec/api/wealth_api_spec.rb +246 -0
- data/spec/api_client_spec.rb +216 -0
- data/spec/configuration_spec.rb +32 -0
- data/spec/models/access_spec.rb +56 -0
- data/spec/models/account_log_spec.rb +74 -0
- data/spec/models/account_spec.rb +134 -0
- data/spec/models/account_type_spec.rb +74 -0
- data/spec/models/alert_spec.rb +74 -0
- data/spec/models/bank_category_spec.rb +38 -0
- data/spec/models/bank_spec.rb +92 -0
- data/spec/models/category_spec.rb +86 -0
- data/spec/models/client_spec.rb +92 -0
- data/spec/models/connection_contact_spec.rb +86 -0
- data/spec/models/connection_log_spec.rb +110 -0
- data/spec/models/connection_spec.rb +80 -0
- data/spec/models/connector_logo_spec.rb +50 -0
- data/spec/models/currency_spec.rb +44 -0
- data/spec/models/device_spec.rb +68 -0
- data/spec/models/document_spec.rb +158 -0
- data/spec/models/document_type_spec.rb +44 -0
- data/spec/models/field_spec.rb +74 -0
- data/spec/models/file_spec.rb +50 -0
- data/spec/models/group_spec.rb +74 -0
- data/spec/models/hash_table_spec.rb +50 -0
- data/spec/models/inline_response_200_10_spec.rb +32 -0
- data/spec/models/inline_response_200_11_spec.rb +32 -0
- data/spec/models/inline_response_200_12_spec.rb +32 -0
- data/spec/models/inline_response_200_13_spec.rb +32 -0
- data/spec/models/inline_response_200_14_spec.rb +32 -0
- data/spec/models/inline_response_200_15_spec.rb +32 -0
- data/spec/models/inline_response_200_16_spec.rb +32 -0
- data/spec/models/inline_response_200_17_spec.rb +32 -0
- data/spec/models/inline_response_200_18_spec.rb +32 -0
- data/spec/models/inline_response_200_19_spec.rb +32 -0
- data/spec/models/inline_response_200_1_spec.rb +38 -0
- data/spec/models/inline_response_200_20_spec.rb +32 -0
- data/spec/models/inline_response_200_21_spec.rb +32 -0
- data/spec/models/inline_response_200_22_spec.rb +32 -0
- data/spec/models/inline_response_200_23_spec.rb +32 -0
- data/spec/models/inline_response_200_24_spec.rb +32 -0
- data/spec/models/inline_response_200_25_spec.rb +32 -0
- data/spec/models/inline_response_200_26_spec.rb +32 -0
- data/spec/models/inline_response_200_27_spec.rb +32 -0
- data/spec/models/inline_response_200_28_spec.rb +32 -0
- data/spec/models/inline_response_200_29_spec.rb +32 -0
- data/spec/models/inline_response_200_2_spec.rb +44 -0
- data/spec/models/inline_response_200_30_spec.rb +32 -0
- data/spec/models/inline_response_200_31_spec.rb +32 -0
- data/spec/models/inline_response_200_32_spec.rb +32 -0
- data/spec/models/inline_response_200_33_spec.rb +32 -0
- data/spec/models/inline_response_200_3_spec.rb +44 -0
- data/spec/models/inline_response_200_4_spec.rb +56 -0
- data/spec/models/inline_response_200_5_spec.rb +38 -0
- data/spec/models/inline_response_200_6_spec.rb +44 -0
- data/spec/models/inline_response_200_7_spec.rb +32 -0
- data/spec/models/inline_response_200_8_spec.rb +32 -0
- data/spec/models/inline_response_200_9_spec.rb +32 -0
- data/spec/models/inline_response_200_spec.rb +32 -0
- data/spec/models/investment_spec.rb +176 -0
- data/spec/models/investment_value_spec.rb +62 -0
- data/spec/models/invite_spec.rb +62 -0
- data/spec/models/locked_user_spec.rb +44 -0
- data/spec/models/oidc_whitelist_spec.rb +38 -0
- data/spec/models/pocket_spec.rb +86 -0
- data/spec/models/profile_spec.rb +78 -0
- data/spec/models/project_spec.rb +80 -0
- data/spec/models/project_type_spec.rb +44 -0
- data/spec/models/recipient_spec.rb +116 -0
- data/spec/models/security_spec.rb +56 -0
- data/spec/models/subscription_spec.rb +92 -0
- data/spec/models/terms_of_service_spec.rb +56 -0
- data/spec/models/transaction_information_spec.rb +50 -0
- data/spec/models/transaction_spec.rb +182 -0
- data/spec/models/transactions_cluster_spec.rb +80 -0
- data/spec/models/transfer_spec.rb +122 -0
- data/spec/models/user_alert_spec.rb +110 -0
- data/spec/models/user_spec.rb +48 -0
- data/spec/models/webhook_spec.rb +74 -0
- data/spec/spec_helper.rb +51 -0
- metadata +599 -0
data/docs/WealthApi.md
ADDED
|
@@ -0,0 +1,828 @@
|
|
|
1
|
+
# BudgeaClient::WealthApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://demo.biapi.pro/2.0/*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**finance_securities_get**](WealthApi.md#finance_securities_get) | **GET** /finance/securities | Get securities
|
|
8
|
+
[**finance_securities_id_security_history_get**](WealthApi.md#finance_securities_id_security_history_get) | **GET** /finance/securities/{id_security}/history | Get connection logs
|
|
9
|
+
[**users_id_user_accounts_id_account_investments_get**](WealthApi.md#users_id_user_accounts_id_account_investments_get) | **GET** /users/{id_user}/accounts/{id_account}/investments | Get investments
|
|
10
|
+
[**users_id_user_accounts_id_account_investments_id_investment_history_get**](WealthApi.md#users_id_user_accounts_id_account_investments_id_investment_history_get) | **GET** /users/{id_user}/accounts/{id_account}/investments/{id_investment}/history | Get investment values
|
|
11
|
+
[**users_id_user_accounts_id_account_investments_id_investment_security_history_get**](WealthApi.md#users_id_user_accounts_id_account_investments_id_investment_security_history_get) | **GET** /users/{id_user}/accounts/{id_account}/investments/{id_investment}/security/history | Get connection logs
|
|
12
|
+
[**users_id_user_connections_id_connection_accounts_id_account_investments_get**](WealthApi.md#users_id_user_connections_id_connection_accounts_id_account_investments_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/investments | Get investments
|
|
13
|
+
[**users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get**](WealthApi.md#users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/investments/{id_investment}/history | Get investment values
|
|
14
|
+
[**users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get**](WealthApi.md#users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/investments/{id_investment}/security/history | Get connection logs
|
|
15
|
+
[**users_id_user_connections_id_connection_investments_get**](WealthApi.md#users_id_user_connections_id_connection_investments_get) | **GET** /users/{id_user}/connections/{id_connection}/investments | Get investments
|
|
16
|
+
[**users_id_user_connections_id_connection_investments_id_investment_history_get**](WealthApi.md#users_id_user_connections_id_connection_investments_id_investment_history_get) | **GET** /users/{id_user}/connections/{id_connection}/investments/{id_investment}/history | Get investment values
|
|
17
|
+
[**users_id_user_connections_id_connection_investments_id_investment_security_history_get**](WealthApi.md#users_id_user_connections_id_connection_investments_id_investment_security_history_get) | **GET** /users/{id_user}/connections/{id_connection}/investments/{id_investment}/security/history | Get connection logs
|
|
18
|
+
[**users_id_user_investments_get**](WealthApi.md#users_id_user_investments_get) | **GET** /users/{id_user}/investments | Get investments
|
|
19
|
+
[**users_id_user_investments_id_investment_history_get**](WealthApi.md#users_id_user_investments_id_investment_history_get) | **GET** /users/{id_user}/investments/{id_investment}/history | Get investment values
|
|
20
|
+
[**users_id_user_investments_id_investment_security_history_get**](WealthApi.md#users_id_user_investments_id_investment_security_history_get) | **GET** /users/{id_user}/investments/{id_investment}/security/history | Get connection logs
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# **finance_securities_get**
|
|
24
|
+
> InlineResponse20014 finance_securities_get(opts)
|
|
25
|
+
|
|
26
|
+
Get securities
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Example
|
|
31
|
+
```ruby
|
|
32
|
+
# load the gem
|
|
33
|
+
require 'budgea_client'
|
|
34
|
+
|
|
35
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
36
|
+
|
|
37
|
+
opts = {
|
|
38
|
+
expand: "expand_example" # String |
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
begin
|
|
42
|
+
#Get securities
|
|
43
|
+
result = api_instance.finance_securities_get(opts)
|
|
44
|
+
p result
|
|
45
|
+
rescue BudgeaClient::ApiError => e
|
|
46
|
+
puts "Exception when calling WealthApi->finance_securities_get: #{e}"
|
|
47
|
+
end
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Parameters
|
|
51
|
+
|
|
52
|
+
Name | Type | Description | Notes
|
|
53
|
+
------------- | ------------- | ------------- | -------------
|
|
54
|
+
**expand** | **String**| | [optional]
|
|
55
|
+
|
|
56
|
+
### Return type
|
|
57
|
+
|
|
58
|
+
[**InlineResponse20014**](InlineResponse20014.md)
|
|
59
|
+
|
|
60
|
+
### Authorization
|
|
61
|
+
|
|
62
|
+
No authorization required
|
|
63
|
+
|
|
64
|
+
### HTTP request headers
|
|
65
|
+
|
|
66
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
67
|
+
- **Accept**: application/json
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# **finance_securities_id_security_history_get**
|
|
72
|
+
> finance_securities_id_security_history_get(id_security, opts)
|
|
73
|
+
|
|
74
|
+
Get connection logs
|
|
75
|
+
|
|
76
|
+
Get logs about connections.<br><br>
|
|
77
|
+
|
|
78
|
+
### Example
|
|
79
|
+
```ruby
|
|
80
|
+
# load the gem
|
|
81
|
+
require 'budgea_client'
|
|
82
|
+
|
|
83
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
84
|
+
|
|
85
|
+
id_security = 56 # Integer |
|
|
86
|
+
|
|
87
|
+
opts = {
|
|
88
|
+
limit: 56, # Integer | limit number of results
|
|
89
|
+
offset: 56, # Integer | offset of first result
|
|
90
|
+
min_date: Date.parse("2013-10-20"), # Date | minimal date
|
|
91
|
+
max_date: Date.parse("2013-10-20"), # Date | maximum date
|
|
92
|
+
period: "period_example" # String | period to group logs
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
begin
|
|
96
|
+
#Get connection logs
|
|
97
|
+
api_instance.finance_securities_id_security_history_get(id_security, opts)
|
|
98
|
+
rescue BudgeaClient::ApiError => e
|
|
99
|
+
puts "Exception when calling WealthApi->finance_securities_id_security_history_get: #{e}"
|
|
100
|
+
end
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Parameters
|
|
104
|
+
|
|
105
|
+
Name | Type | Description | Notes
|
|
106
|
+
------------- | ------------- | ------------- | -------------
|
|
107
|
+
**id_security** | **Integer**| |
|
|
108
|
+
**limit** | **Integer**| limit number of results | [optional]
|
|
109
|
+
**offset** | **Integer**| offset of first result | [optional]
|
|
110
|
+
**min_date** | **Date**| minimal date | [optional]
|
|
111
|
+
**max_date** | **Date**| maximum date | [optional]
|
|
112
|
+
**period** | **String**| period to group logs | [optional]
|
|
113
|
+
|
|
114
|
+
### Return type
|
|
115
|
+
|
|
116
|
+
nil (empty response body)
|
|
117
|
+
|
|
118
|
+
### Authorization
|
|
119
|
+
|
|
120
|
+
No authorization required
|
|
121
|
+
|
|
122
|
+
### HTTP request headers
|
|
123
|
+
|
|
124
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
125
|
+
- **Accept**: application/json
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
# **users_id_user_accounts_id_account_investments_get**
|
|
130
|
+
> InlineResponse20019 users_id_user_accounts_id_account_investments_get(id_user, id_account, opts)
|
|
131
|
+
|
|
132
|
+
Get investments
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### Example
|
|
137
|
+
```ruby
|
|
138
|
+
# load the gem
|
|
139
|
+
require 'budgea_client'
|
|
140
|
+
|
|
141
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
142
|
+
|
|
143
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
144
|
+
|
|
145
|
+
id_account = 56 # Integer |
|
|
146
|
+
|
|
147
|
+
opts = {
|
|
148
|
+
expand: "expand_example" # String |
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
begin
|
|
152
|
+
#Get investments
|
|
153
|
+
result = api_instance.users_id_user_accounts_id_account_investments_get(id_user, id_account, opts)
|
|
154
|
+
p result
|
|
155
|
+
rescue BudgeaClient::ApiError => e
|
|
156
|
+
puts "Exception when calling WealthApi->users_id_user_accounts_id_account_investments_get: #{e}"
|
|
157
|
+
end
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Parameters
|
|
161
|
+
|
|
162
|
+
Name | Type | Description | Notes
|
|
163
|
+
------------- | ------------- | ------------- | -------------
|
|
164
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
165
|
+
**id_account** | **Integer**| |
|
|
166
|
+
**expand** | **String**| | [optional]
|
|
167
|
+
|
|
168
|
+
### Return type
|
|
169
|
+
|
|
170
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
|
171
|
+
|
|
172
|
+
### Authorization
|
|
173
|
+
|
|
174
|
+
No authorization required
|
|
175
|
+
|
|
176
|
+
### HTTP request headers
|
|
177
|
+
|
|
178
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
179
|
+
- **Accept**: application/json
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
# **users_id_user_accounts_id_account_investments_id_investment_history_get**
|
|
184
|
+
> InlineResponse20020 users_id_user_accounts_id_account_investments_id_investment_history_get(id_user, id_account, id_investment, opts)
|
|
185
|
+
|
|
186
|
+
Get investment values
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Example
|
|
191
|
+
```ruby
|
|
192
|
+
# load the gem
|
|
193
|
+
require 'budgea_client'
|
|
194
|
+
|
|
195
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
196
|
+
|
|
197
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
198
|
+
|
|
199
|
+
id_account = 56 # Integer |
|
|
200
|
+
|
|
201
|
+
id_investment = 56 # Integer |
|
|
202
|
+
|
|
203
|
+
opts = {
|
|
204
|
+
expand: "expand_example" # String |
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
begin
|
|
208
|
+
#Get investment values
|
|
209
|
+
result = api_instance.users_id_user_accounts_id_account_investments_id_investment_history_get(id_user, id_account, id_investment, opts)
|
|
210
|
+
p result
|
|
211
|
+
rescue BudgeaClient::ApiError => e
|
|
212
|
+
puts "Exception when calling WealthApi->users_id_user_accounts_id_account_investments_id_investment_history_get: #{e}"
|
|
213
|
+
end
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
### Parameters
|
|
217
|
+
|
|
218
|
+
Name | Type | Description | Notes
|
|
219
|
+
------------- | ------------- | ------------- | -------------
|
|
220
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
221
|
+
**id_account** | **Integer**| |
|
|
222
|
+
**id_investment** | **Integer**| |
|
|
223
|
+
**expand** | **String**| | [optional]
|
|
224
|
+
|
|
225
|
+
### Return type
|
|
226
|
+
|
|
227
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
228
|
+
|
|
229
|
+
### Authorization
|
|
230
|
+
|
|
231
|
+
No authorization required
|
|
232
|
+
|
|
233
|
+
### HTTP request headers
|
|
234
|
+
|
|
235
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
236
|
+
- **Accept**: application/json
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
# **users_id_user_accounts_id_account_investments_id_investment_security_history_get**
|
|
241
|
+
> users_id_user_accounts_id_account_investments_id_investment_security_history_get(id_user, id_account, id_investment, opts)
|
|
242
|
+
|
|
243
|
+
Get connection logs
|
|
244
|
+
|
|
245
|
+
Get logs about connections.<br><br>
|
|
246
|
+
|
|
247
|
+
### Example
|
|
248
|
+
```ruby
|
|
249
|
+
# load the gem
|
|
250
|
+
require 'budgea_client'
|
|
251
|
+
|
|
252
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
253
|
+
|
|
254
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
255
|
+
|
|
256
|
+
id_account = 56 # Integer |
|
|
257
|
+
|
|
258
|
+
id_investment = 56 # Integer |
|
|
259
|
+
|
|
260
|
+
opts = {
|
|
261
|
+
limit: 56, # Integer | limit number of results
|
|
262
|
+
offset: 56, # Integer | offset of first result
|
|
263
|
+
min_date: Date.parse("2013-10-20"), # Date | minimal date
|
|
264
|
+
max_date: Date.parse("2013-10-20"), # Date | maximum date
|
|
265
|
+
period: "period_example" # String | period to group logs
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
begin
|
|
269
|
+
#Get connection logs
|
|
270
|
+
api_instance.users_id_user_accounts_id_account_investments_id_investment_security_history_get(id_user, id_account, id_investment, opts)
|
|
271
|
+
rescue BudgeaClient::ApiError => e
|
|
272
|
+
puts "Exception when calling WealthApi->users_id_user_accounts_id_account_investments_id_investment_security_history_get: #{e}"
|
|
273
|
+
end
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
### Parameters
|
|
277
|
+
|
|
278
|
+
Name | Type | Description | Notes
|
|
279
|
+
------------- | ------------- | ------------- | -------------
|
|
280
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
281
|
+
**id_account** | **Integer**| |
|
|
282
|
+
**id_investment** | **Integer**| |
|
|
283
|
+
**limit** | **Integer**| limit number of results | [optional]
|
|
284
|
+
**offset** | **Integer**| offset of first result | [optional]
|
|
285
|
+
**min_date** | **Date**| minimal date | [optional]
|
|
286
|
+
**max_date** | **Date**| maximum date | [optional]
|
|
287
|
+
**period** | **String**| period to group logs | [optional]
|
|
288
|
+
|
|
289
|
+
### Return type
|
|
290
|
+
|
|
291
|
+
nil (empty response body)
|
|
292
|
+
|
|
293
|
+
### Authorization
|
|
294
|
+
|
|
295
|
+
No authorization required
|
|
296
|
+
|
|
297
|
+
### HTTP request headers
|
|
298
|
+
|
|
299
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
300
|
+
- **Accept**: application/json
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# **users_id_user_connections_id_connection_accounts_id_account_investments_get**
|
|
305
|
+
> InlineResponse20019 users_id_user_connections_id_connection_accounts_id_account_investments_get(id_user, id_connection, id_account, opts)
|
|
306
|
+
|
|
307
|
+
Get investments
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Example
|
|
312
|
+
```ruby
|
|
313
|
+
# load the gem
|
|
314
|
+
require 'budgea_client'
|
|
315
|
+
|
|
316
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
317
|
+
|
|
318
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
319
|
+
|
|
320
|
+
id_connection = 56 # Integer |
|
|
321
|
+
|
|
322
|
+
id_account = 56 # Integer |
|
|
323
|
+
|
|
324
|
+
opts = {
|
|
325
|
+
expand: "expand_example" # String |
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
begin
|
|
329
|
+
#Get investments
|
|
330
|
+
result = api_instance.users_id_user_connections_id_connection_accounts_id_account_investments_get(id_user, id_connection, id_account, opts)
|
|
331
|
+
p result
|
|
332
|
+
rescue BudgeaClient::ApiError => e
|
|
333
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_accounts_id_account_investments_get: #{e}"
|
|
334
|
+
end
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
### Parameters
|
|
338
|
+
|
|
339
|
+
Name | Type | Description | Notes
|
|
340
|
+
------------- | ------------- | ------------- | -------------
|
|
341
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
342
|
+
**id_connection** | **Integer**| |
|
|
343
|
+
**id_account** | **Integer**| |
|
|
344
|
+
**expand** | **String**| | [optional]
|
|
345
|
+
|
|
346
|
+
### Return type
|
|
347
|
+
|
|
348
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
|
349
|
+
|
|
350
|
+
### Authorization
|
|
351
|
+
|
|
352
|
+
No authorization required
|
|
353
|
+
|
|
354
|
+
### HTTP request headers
|
|
355
|
+
|
|
356
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
357
|
+
- **Accept**: application/json
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
# **users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get**
|
|
362
|
+
> InlineResponse20020 users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get(id_user, id_connection, id_account, id_investment, opts)
|
|
363
|
+
|
|
364
|
+
Get investment values
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
### Example
|
|
369
|
+
```ruby
|
|
370
|
+
# load the gem
|
|
371
|
+
require 'budgea_client'
|
|
372
|
+
|
|
373
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
374
|
+
|
|
375
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
376
|
+
|
|
377
|
+
id_connection = 56 # Integer |
|
|
378
|
+
|
|
379
|
+
id_account = 56 # Integer |
|
|
380
|
+
|
|
381
|
+
id_investment = 56 # Integer |
|
|
382
|
+
|
|
383
|
+
opts = {
|
|
384
|
+
expand: "expand_example" # String |
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
begin
|
|
388
|
+
#Get investment values
|
|
389
|
+
result = api_instance.users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get(id_user, id_connection, id_account, id_investment, opts)
|
|
390
|
+
p result
|
|
391
|
+
rescue BudgeaClient::ApiError => e
|
|
392
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_history_get: #{e}"
|
|
393
|
+
end
|
|
394
|
+
```
|
|
395
|
+
|
|
396
|
+
### Parameters
|
|
397
|
+
|
|
398
|
+
Name | Type | Description | Notes
|
|
399
|
+
------------- | ------------- | ------------- | -------------
|
|
400
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
401
|
+
**id_connection** | **Integer**| |
|
|
402
|
+
**id_account** | **Integer**| |
|
|
403
|
+
**id_investment** | **Integer**| |
|
|
404
|
+
**expand** | **String**| | [optional]
|
|
405
|
+
|
|
406
|
+
### Return type
|
|
407
|
+
|
|
408
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
409
|
+
|
|
410
|
+
### Authorization
|
|
411
|
+
|
|
412
|
+
No authorization required
|
|
413
|
+
|
|
414
|
+
### HTTP request headers
|
|
415
|
+
|
|
416
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
417
|
+
- **Accept**: application/json
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
# **users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get**
|
|
422
|
+
> users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get(id_user, id_connection, id_account, id_investment, opts)
|
|
423
|
+
|
|
424
|
+
Get connection logs
|
|
425
|
+
|
|
426
|
+
Get logs about connections.<br><br>
|
|
427
|
+
|
|
428
|
+
### Example
|
|
429
|
+
```ruby
|
|
430
|
+
# load the gem
|
|
431
|
+
require 'budgea_client'
|
|
432
|
+
|
|
433
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
434
|
+
|
|
435
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
436
|
+
|
|
437
|
+
id_connection = 56 # Integer |
|
|
438
|
+
|
|
439
|
+
id_account = 56 # Integer |
|
|
440
|
+
|
|
441
|
+
id_investment = 56 # Integer |
|
|
442
|
+
|
|
443
|
+
opts = {
|
|
444
|
+
limit: 56, # Integer | limit number of results
|
|
445
|
+
offset: 56, # Integer | offset of first result
|
|
446
|
+
min_date: Date.parse("2013-10-20"), # Date | minimal date
|
|
447
|
+
max_date: Date.parse("2013-10-20"), # Date | maximum date
|
|
448
|
+
period: "period_example" # String | period to group logs
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
begin
|
|
452
|
+
#Get connection logs
|
|
453
|
+
api_instance.users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get(id_user, id_connection, id_account, id_investment, opts)
|
|
454
|
+
rescue BudgeaClient::ApiError => e
|
|
455
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_accounts_id_account_investments_id_investment_security_history_get: #{e}"
|
|
456
|
+
end
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
### Parameters
|
|
460
|
+
|
|
461
|
+
Name | Type | Description | Notes
|
|
462
|
+
------------- | ------------- | ------------- | -------------
|
|
463
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
464
|
+
**id_connection** | **Integer**| |
|
|
465
|
+
**id_account** | **Integer**| |
|
|
466
|
+
**id_investment** | **Integer**| |
|
|
467
|
+
**limit** | **Integer**| limit number of results | [optional]
|
|
468
|
+
**offset** | **Integer**| offset of first result | [optional]
|
|
469
|
+
**min_date** | **Date**| minimal date | [optional]
|
|
470
|
+
**max_date** | **Date**| maximum date | [optional]
|
|
471
|
+
**period** | **String**| period to group logs | [optional]
|
|
472
|
+
|
|
473
|
+
### Return type
|
|
474
|
+
|
|
475
|
+
nil (empty response body)
|
|
476
|
+
|
|
477
|
+
### Authorization
|
|
478
|
+
|
|
479
|
+
No authorization required
|
|
480
|
+
|
|
481
|
+
### HTTP request headers
|
|
482
|
+
|
|
483
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
484
|
+
- **Accept**: application/json
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
# **users_id_user_connections_id_connection_investments_get**
|
|
489
|
+
> InlineResponse20019 users_id_user_connections_id_connection_investments_get(id_user, id_connection, opts)
|
|
490
|
+
|
|
491
|
+
Get investments
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
### Example
|
|
496
|
+
```ruby
|
|
497
|
+
# load the gem
|
|
498
|
+
require 'budgea_client'
|
|
499
|
+
|
|
500
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
501
|
+
|
|
502
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
503
|
+
|
|
504
|
+
id_connection = 56 # Integer |
|
|
505
|
+
|
|
506
|
+
opts = {
|
|
507
|
+
expand: "expand_example" # String |
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
begin
|
|
511
|
+
#Get investments
|
|
512
|
+
result = api_instance.users_id_user_connections_id_connection_investments_get(id_user, id_connection, opts)
|
|
513
|
+
p result
|
|
514
|
+
rescue BudgeaClient::ApiError => e
|
|
515
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_investments_get: #{e}"
|
|
516
|
+
end
|
|
517
|
+
```
|
|
518
|
+
|
|
519
|
+
### Parameters
|
|
520
|
+
|
|
521
|
+
Name | Type | Description | Notes
|
|
522
|
+
------------- | ------------- | ------------- | -------------
|
|
523
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
524
|
+
**id_connection** | **Integer**| |
|
|
525
|
+
**expand** | **String**| | [optional]
|
|
526
|
+
|
|
527
|
+
### Return type
|
|
528
|
+
|
|
529
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
|
530
|
+
|
|
531
|
+
### Authorization
|
|
532
|
+
|
|
533
|
+
No authorization required
|
|
534
|
+
|
|
535
|
+
### HTTP request headers
|
|
536
|
+
|
|
537
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
538
|
+
- **Accept**: application/json
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
# **users_id_user_connections_id_connection_investments_id_investment_history_get**
|
|
543
|
+
> InlineResponse20020 users_id_user_connections_id_connection_investments_id_investment_history_get(id_user, id_connection, id_investment, opts)
|
|
544
|
+
|
|
545
|
+
Get investment values
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
### Example
|
|
550
|
+
```ruby
|
|
551
|
+
# load the gem
|
|
552
|
+
require 'budgea_client'
|
|
553
|
+
|
|
554
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
555
|
+
|
|
556
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
557
|
+
|
|
558
|
+
id_connection = 56 # Integer |
|
|
559
|
+
|
|
560
|
+
id_investment = 56 # Integer |
|
|
561
|
+
|
|
562
|
+
opts = {
|
|
563
|
+
expand: "expand_example" # String |
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
begin
|
|
567
|
+
#Get investment values
|
|
568
|
+
result = api_instance.users_id_user_connections_id_connection_investments_id_investment_history_get(id_user, id_connection, id_investment, opts)
|
|
569
|
+
p result
|
|
570
|
+
rescue BudgeaClient::ApiError => e
|
|
571
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_investments_id_investment_history_get: #{e}"
|
|
572
|
+
end
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
### Parameters
|
|
576
|
+
|
|
577
|
+
Name | Type | Description | Notes
|
|
578
|
+
------------- | ------------- | ------------- | -------------
|
|
579
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
580
|
+
**id_connection** | **Integer**| |
|
|
581
|
+
**id_investment** | **Integer**| |
|
|
582
|
+
**expand** | **String**| | [optional]
|
|
583
|
+
|
|
584
|
+
### Return type
|
|
585
|
+
|
|
586
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
587
|
+
|
|
588
|
+
### Authorization
|
|
589
|
+
|
|
590
|
+
No authorization required
|
|
591
|
+
|
|
592
|
+
### HTTP request headers
|
|
593
|
+
|
|
594
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
595
|
+
- **Accept**: application/json
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
# **users_id_user_connections_id_connection_investments_id_investment_security_history_get**
|
|
600
|
+
> users_id_user_connections_id_connection_investments_id_investment_security_history_get(id_user, id_connection, id_investment, opts)
|
|
601
|
+
|
|
602
|
+
Get connection logs
|
|
603
|
+
|
|
604
|
+
Get logs about connections.<br><br>
|
|
605
|
+
|
|
606
|
+
### Example
|
|
607
|
+
```ruby
|
|
608
|
+
# load the gem
|
|
609
|
+
require 'budgea_client'
|
|
610
|
+
|
|
611
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
612
|
+
|
|
613
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
614
|
+
|
|
615
|
+
id_connection = 56 # Integer |
|
|
616
|
+
|
|
617
|
+
id_investment = 56 # Integer |
|
|
618
|
+
|
|
619
|
+
opts = {
|
|
620
|
+
limit: 56, # Integer | limit number of results
|
|
621
|
+
offset: 56, # Integer | offset of first result
|
|
622
|
+
min_date: Date.parse("2013-10-20"), # Date | minimal date
|
|
623
|
+
max_date: Date.parse("2013-10-20"), # Date | maximum date
|
|
624
|
+
period: "period_example" # String | period to group logs
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
begin
|
|
628
|
+
#Get connection logs
|
|
629
|
+
api_instance.users_id_user_connections_id_connection_investments_id_investment_security_history_get(id_user, id_connection, id_investment, opts)
|
|
630
|
+
rescue BudgeaClient::ApiError => e
|
|
631
|
+
puts "Exception when calling WealthApi->users_id_user_connections_id_connection_investments_id_investment_security_history_get: #{e}"
|
|
632
|
+
end
|
|
633
|
+
```
|
|
634
|
+
|
|
635
|
+
### Parameters
|
|
636
|
+
|
|
637
|
+
Name | Type | Description | Notes
|
|
638
|
+
------------- | ------------- | ------------- | -------------
|
|
639
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
640
|
+
**id_connection** | **Integer**| |
|
|
641
|
+
**id_investment** | **Integer**| |
|
|
642
|
+
**limit** | **Integer**| limit number of results | [optional]
|
|
643
|
+
**offset** | **Integer**| offset of first result | [optional]
|
|
644
|
+
**min_date** | **Date**| minimal date | [optional]
|
|
645
|
+
**max_date** | **Date**| maximum date | [optional]
|
|
646
|
+
**period** | **String**| period to group logs | [optional]
|
|
647
|
+
|
|
648
|
+
### Return type
|
|
649
|
+
|
|
650
|
+
nil (empty response body)
|
|
651
|
+
|
|
652
|
+
### Authorization
|
|
653
|
+
|
|
654
|
+
No authorization required
|
|
655
|
+
|
|
656
|
+
### HTTP request headers
|
|
657
|
+
|
|
658
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
659
|
+
- **Accept**: application/json
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
# **users_id_user_investments_get**
|
|
664
|
+
> InlineResponse20019 users_id_user_investments_get(id_user, opts)
|
|
665
|
+
|
|
666
|
+
Get investments
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
### Example
|
|
671
|
+
```ruby
|
|
672
|
+
# load the gem
|
|
673
|
+
require 'budgea_client'
|
|
674
|
+
|
|
675
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
676
|
+
|
|
677
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
678
|
+
|
|
679
|
+
opts = {
|
|
680
|
+
expand: "expand_example" # String |
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
begin
|
|
684
|
+
#Get investments
|
|
685
|
+
result = api_instance.users_id_user_investments_get(id_user, opts)
|
|
686
|
+
p result
|
|
687
|
+
rescue BudgeaClient::ApiError => e
|
|
688
|
+
puts "Exception when calling WealthApi->users_id_user_investments_get: #{e}"
|
|
689
|
+
end
|
|
690
|
+
```
|
|
691
|
+
|
|
692
|
+
### Parameters
|
|
693
|
+
|
|
694
|
+
Name | Type | Description | Notes
|
|
695
|
+
------------- | ------------- | ------------- | -------------
|
|
696
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
697
|
+
**expand** | **String**| | [optional]
|
|
698
|
+
|
|
699
|
+
### Return type
|
|
700
|
+
|
|
701
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
|
702
|
+
|
|
703
|
+
### Authorization
|
|
704
|
+
|
|
705
|
+
No authorization required
|
|
706
|
+
|
|
707
|
+
### HTTP request headers
|
|
708
|
+
|
|
709
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
710
|
+
- **Accept**: application/json
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
# **users_id_user_investments_id_investment_history_get**
|
|
715
|
+
> InlineResponse20020 users_id_user_investments_id_investment_history_get(id_user, id_investment, opts)
|
|
716
|
+
|
|
717
|
+
Get investment values
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
### Example
|
|
722
|
+
```ruby
|
|
723
|
+
# load the gem
|
|
724
|
+
require 'budgea_client'
|
|
725
|
+
|
|
726
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
727
|
+
|
|
728
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
729
|
+
|
|
730
|
+
id_investment = 56 # Integer |
|
|
731
|
+
|
|
732
|
+
opts = {
|
|
733
|
+
expand: "expand_example" # String |
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
begin
|
|
737
|
+
#Get investment values
|
|
738
|
+
result = api_instance.users_id_user_investments_id_investment_history_get(id_user, id_investment, opts)
|
|
739
|
+
p result
|
|
740
|
+
rescue BudgeaClient::ApiError => e
|
|
741
|
+
puts "Exception when calling WealthApi->users_id_user_investments_id_investment_history_get: #{e}"
|
|
742
|
+
end
|
|
743
|
+
```
|
|
744
|
+
|
|
745
|
+
### Parameters
|
|
746
|
+
|
|
747
|
+
Name | Type | Description | Notes
|
|
748
|
+
------------- | ------------- | ------------- | -------------
|
|
749
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
750
|
+
**id_investment** | **Integer**| |
|
|
751
|
+
**expand** | **String**| | [optional]
|
|
752
|
+
|
|
753
|
+
### Return type
|
|
754
|
+
|
|
755
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
756
|
+
|
|
757
|
+
### Authorization
|
|
758
|
+
|
|
759
|
+
No authorization required
|
|
760
|
+
|
|
761
|
+
### HTTP request headers
|
|
762
|
+
|
|
763
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
764
|
+
- **Accept**: application/json
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
# **users_id_user_investments_id_investment_security_history_get**
|
|
769
|
+
> users_id_user_investments_id_investment_security_history_get(id_user, id_investment, opts)
|
|
770
|
+
|
|
771
|
+
Get connection logs
|
|
772
|
+
|
|
773
|
+
Get logs about connections.<br><br>
|
|
774
|
+
|
|
775
|
+
### Example
|
|
776
|
+
```ruby
|
|
777
|
+
# load the gem
|
|
778
|
+
require 'budgea_client'
|
|
779
|
+
|
|
780
|
+
api_instance = BudgeaClient::WealthApi.new
|
|
781
|
+
|
|
782
|
+
id_user = "id_user_example" # String | Hint: you can use 'me' or 'all'
|
|
783
|
+
|
|
784
|
+
id_investment = 56 # Integer |
|
|
785
|
+
|
|
786
|
+
opts = {
|
|
787
|
+
limit: 56, # Integer | limit number of results
|
|
788
|
+
offset: 56, # Integer | offset of first result
|
|
789
|
+
min_date: Date.parse("2013-10-20"), # Date | minimal date
|
|
790
|
+
max_date: Date.parse("2013-10-20"), # Date | maximum date
|
|
791
|
+
period: "period_example" # String | period to group logs
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
begin
|
|
795
|
+
#Get connection logs
|
|
796
|
+
api_instance.users_id_user_investments_id_investment_security_history_get(id_user, id_investment, opts)
|
|
797
|
+
rescue BudgeaClient::ApiError => e
|
|
798
|
+
puts "Exception when calling WealthApi->users_id_user_investments_id_investment_security_history_get: #{e}"
|
|
799
|
+
end
|
|
800
|
+
```
|
|
801
|
+
|
|
802
|
+
### Parameters
|
|
803
|
+
|
|
804
|
+
Name | Type | Description | Notes
|
|
805
|
+
------------- | ------------- | ------------- | -------------
|
|
806
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
807
|
+
**id_investment** | **Integer**| |
|
|
808
|
+
**limit** | **Integer**| limit number of results | [optional]
|
|
809
|
+
**offset** | **Integer**| offset of first result | [optional]
|
|
810
|
+
**min_date** | **Date**| minimal date | [optional]
|
|
811
|
+
**max_date** | **Date**| maximum date | [optional]
|
|
812
|
+
**period** | **String**| period to group logs | [optional]
|
|
813
|
+
|
|
814
|
+
### Return type
|
|
815
|
+
|
|
816
|
+
nil (empty response body)
|
|
817
|
+
|
|
818
|
+
### Authorization
|
|
819
|
+
|
|
820
|
+
No authorization required
|
|
821
|
+
|
|
822
|
+
### HTTP request headers
|
|
823
|
+
|
|
824
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
825
|
+
- **Accept**: application/json
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|