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/AuthenticationApi.md
CHANGED
|
@@ -4,14 +4,75 @@ All URIs are relative to *https://demo.biapi.pro/2.0/*
|
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
|
+
[**admin_jwt_post**](AuthenticationApi.md#admin_jwt_post) | **POST** /admin/jwt | Generate a jwt manage token
|
|
7
8
|
[**auth_init_post**](AuthenticationApi.md#auth_init_post) | **POST** /auth/init | Create a new anonymous user
|
|
9
|
+
[**auth_jwt_post**](AuthenticationApi.md#auth_jwt_post) | **POST** /auth/jwt | Generate a user jwt token
|
|
8
10
|
[**auth_token_access_post**](AuthenticationApi.md#auth_token_access_post) | **POST** /auth/token/access | Transform a temporary code to a access_token
|
|
9
11
|
[**auth_token_code_get**](AuthenticationApi.md#auth_token_code_get) | **GET** /auth/token/code | Generate a user temporary token
|
|
10
12
|
[**auth_token_delete**](AuthenticationApi.md#auth_token_delete) | **DELETE** /auth/token | Remove user access
|
|
13
|
+
[**certificate_type_get**](AuthenticationApi.md#certificate_type_get) | **GET** /certificate/{type} | Get the latest certificate of a type
|
|
11
14
|
[**hash_delete**](AuthenticationApi.md#hash_delete) | **DELETE** /hash | Delete the user's connections
|
|
12
15
|
[**users_id_user_delete**](AuthenticationApi.md#users_id_user_delete) | **DELETE** /users/{id_user} | Delete the user
|
|
13
16
|
[**users_id_user_get**](AuthenticationApi.md#users_id_user_get) | **GET** /users/{id_user} | Get a user
|
|
14
17
|
[**users_id_user_token_post**](AuthenticationApi.md#users_id_user_token_post) | **POST** /users/{id_user}/token | Create a token
|
|
18
|
+
[**webauth_get**](AuthenticationApi.md#webauth_get) | **GET** /webauth | Initialize a new OAuth2 proxy session.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# **admin_jwt_post**
|
|
22
|
+
> Object admin_jwt_post(opts)
|
|
23
|
+
|
|
24
|
+
Generate a jwt manage token
|
|
25
|
+
|
|
26
|
+
This endpoint generates a new jwt manage token. It requires an admin manage token to be used<br><br>
|
|
27
|
+
|
|
28
|
+
### Example
|
|
29
|
+
```ruby
|
|
30
|
+
# load the gem
|
|
31
|
+
require 'budgea_client'
|
|
32
|
+
# setup authorization
|
|
33
|
+
BudgeaClient.configure do |config|
|
|
34
|
+
# Configure API key authorization: api_key
|
|
35
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
36
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
37
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
api_instance = BudgeaClient::AuthenticationApi.new
|
|
41
|
+
|
|
42
|
+
opts = {
|
|
43
|
+
scope: 'scope_example', # String | scope requested for the token (default: config)
|
|
44
|
+
duration: 56 # Integer | number of minute before the token expiration (0 for token that won't expire unless the client application is deleted) (default: 1)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
begin
|
|
48
|
+
#Generate a jwt manage token
|
|
49
|
+
result = api_instance.admin_jwt_post(opts)
|
|
50
|
+
p result
|
|
51
|
+
rescue BudgeaClient::ApiError => e
|
|
52
|
+
puts "Exception when calling AuthenticationApi->admin_jwt_post: #{e}"
|
|
53
|
+
end
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Parameters
|
|
57
|
+
|
|
58
|
+
Name | Type | Description | Notes
|
|
59
|
+
------------- | ------------- | ------------- | -------------
|
|
60
|
+
**scope** | **String**| scope requested for the token (default: config) | [optional]
|
|
61
|
+
**duration** | **Integer**| number of minute before the token expiration (0 for token that won't expire unless the client application is deleted) (default: 1) | [optional]
|
|
62
|
+
|
|
63
|
+
### Return type
|
|
64
|
+
|
|
65
|
+
**Object**
|
|
66
|
+
|
|
67
|
+
### Authorization
|
|
68
|
+
|
|
69
|
+
[api_key](../README.md#api_key)
|
|
70
|
+
|
|
71
|
+
### HTTP request headers
|
|
72
|
+
|
|
73
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
74
|
+
- **Accept**: application/json
|
|
75
|
+
|
|
15
76
|
|
|
16
77
|
|
|
17
78
|
# **auth_init_post**
|
|
@@ -36,8 +97,8 @@ end
|
|
|
36
97
|
api_instance = BudgeaClient::AuthenticationApi.new
|
|
37
98
|
|
|
38
99
|
opts = {
|
|
39
|
-
client_id:
|
|
40
|
-
client_secret:
|
|
100
|
+
client_id: 'client_id_example', # String | ID of the client
|
|
101
|
+
client_secret: 'client_secret_example' # String | secret of the client
|
|
41
102
|
}
|
|
42
103
|
|
|
43
104
|
begin
|
|
@@ -71,8 +132,71 @@ Name | Type | Description | Notes
|
|
|
71
132
|
|
|
72
133
|
|
|
73
134
|
|
|
135
|
+
# **auth_jwt_post**
|
|
136
|
+
> InlineResponse2003 auth_jwt_post(opts)
|
|
137
|
+
|
|
138
|
+
Generate a user jwt token
|
|
139
|
+
|
|
140
|
+
This endpoint generates a new jwt token for the user. This token will last the time in minutes given by the config key auth.default_token_expire (permanent if this the parameter expire=False is given)<br><br>
|
|
141
|
+
|
|
142
|
+
### Example
|
|
143
|
+
```ruby
|
|
144
|
+
# load the gem
|
|
145
|
+
require 'budgea_client'
|
|
146
|
+
# setup authorization
|
|
147
|
+
BudgeaClient.configure do |config|
|
|
148
|
+
# Configure API key authorization: api_key
|
|
149
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
150
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
151
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
api_instance = BudgeaClient::AuthenticationApi.new
|
|
155
|
+
|
|
156
|
+
opts = {
|
|
157
|
+
client_id: 'client_id_example', # String | id of the client
|
|
158
|
+
client_secret: 'client_secret_example', # String | secret for the client
|
|
159
|
+
scope: 'scope_example', # String | scope requested for the token
|
|
160
|
+
id_user: 56, # Integer | user for whom the token has to be generated. If not supplied, a user will be created
|
|
161
|
+
expire: true # BOOLEAN | if set to True, the token will expire n minutes after its creation, n being the value of configuration key auth.default_token_expire (default: True)
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
begin
|
|
165
|
+
#Generate a user jwt token
|
|
166
|
+
result = api_instance.auth_jwt_post(opts)
|
|
167
|
+
p result
|
|
168
|
+
rescue BudgeaClient::ApiError => e
|
|
169
|
+
puts "Exception when calling AuthenticationApi->auth_jwt_post: #{e}"
|
|
170
|
+
end
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
### Parameters
|
|
174
|
+
|
|
175
|
+
Name | Type | Description | Notes
|
|
176
|
+
------------- | ------------- | ------------- | -------------
|
|
177
|
+
**client_id** | **String**| id of the client | [optional]
|
|
178
|
+
**client_secret** | **String**| secret for the client | [optional]
|
|
179
|
+
**scope** | **String**| scope requested for the token | [optional]
|
|
180
|
+
**id_user** | **Integer**| user for whom the token has to be generated. If not supplied, a user will be created | [optional]
|
|
181
|
+
**expire** | **BOOLEAN**| if set to True, the token will expire n minutes after its creation, n being the value of configuration key auth.default_token_expire (default: True) | [optional]
|
|
182
|
+
|
|
183
|
+
### Return type
|
|
184
|
+
|
|
185
|
+
[**InlineResponse2003**](InlineResponse2003.md)
|
|
186
|
+
|
|
187
|
+
### Authorization
|
|
188
|
+
|
|
189
|
+
[api_key](../README.md#api_key)
|
|
190
|
+
|
|
191
|
+
### HTTP request headers
|
|
192
|
+
|
|
193
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
194
|
+
- **Accept**: application/json
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
74
198
|
# **auth_token_access_post**
|
|
75
|
-
>
|
|
199
|
+
> InlineResponse2006 auth_token_access_post(client_id, client_secret, code, opts)
|
|
76
200
|
|
|
77
201
|
Transform a temporary code to a access_token
|
|
78
202
|
|
|
@@ -92,15 +216,15 @@ end
|
|
|
92
216
|
|
|
93
217
|
api_instance = BudgeaClient::AuthenticationApi.new
|
|
94
218
|
|
|
95
|
-
client_id =
|
|
219
|
+
client_id = 'client_id_example' # String | ID of the client
|
|
96
220
|
|
|
97
|
-
client_secret =
|
|
221
|
+
client_secret = 'client_secret_example' # String | secret of the client
|
|
98
222
|
|
|
99
|
-
code =
|
|
223
|
+
code = 'code_example' # String | user's temporary code
|
|
100
224
|
|
|
101
225
|
opts = {
|
|
102
|
-
grant_type:
|
|
103
|
-
redirect_uri:
|
|
226
|
+
grant_type: 'grant_type_example', # String | default is \"authorization_code\"
|
|
227
|
+
redirect_uri: 'redirect_uri_example' # String | redirect uri used by user
|
|
104
228
|
}
|
|
105
229
|
|
|
106
230
|
begin
|
|
@@ -124,7 +248,7 @@ Name | Type | Description | Notes
|
|
|
124
248
|
|
|
125
249
|
### Return type
|
|
126
250
|
|
|
127
|
-
[**
|
|
251
|
+
[**InlineResponse2006**](InlineResponse2006.md)
|
|
128
252
|
|
|
129
253
|
### Authorization
|
|
130
254
|
|
|
@@ -138,7 +262,7 @@ Name | Type | Description | Notes
|
|
|
138
262
|
|
|
139
263
|
|
|
140
264
|
# **auth_token_code_get**
|
|
141
|
-
>
|
|
265
|
+
> InlineResponse2007 auth_token_code_get
|
|
142
266
|
|
|
143
267
|
Generate a user temporary token
|
|
144
268
|
|
|
@@ -172,7 +296,7 @@ This endpoint does not need any parameter.
|
|
|
172
296
|
|
|
173
297
|
### Return type
|
|
174
298
|
|
|
175
|
-
[**
|
|
299
|
+
[**InlineResponse2007**](InlineResponse2007.md)
|
|
176
300
|
|
|
177
301
|
### Authorization
|
|
178
302
|
|
|
@@ -232,6 +356,64 @@ nil (empty response body)
|
|
|
232
356
|
|
|
233
357
|
|
|
234
358
|
|
|
359
|
+
# **certificate_type_get**
|
|
360
|
+
> Certificate certificate_type_get(type, opts)
|
|
361
|
+
|
|
362
|
+
Get the latest certificate of a type
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Example
|
|
367
|
+
```ruby
|
|
368
|
+
# load the gem
|
|
369
|
+
require 'budgea_client'
|
|
370
|
+
# setup authorization
|
|
371
|
+
BudgeaClient.configure do |config|
|
|
372
|
+
# Configure API key authorization: api_key
|
|
373
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
374
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
375
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
api_instance = BudgeaClient::AuthenticationApi.new
|
|
379
|
+
|
|
380
|
+
type = 'type_example' # String |
|
|
381
|
+
|
|
382
|
+
opts = {
|
|
383
|
+
expand: 'expand_example' # String |
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
begin
|
|
387
|
+
#Get the latest certificate of a type
|
|
388
|
+
result = api_instance.certificate_type_get(type, opts)
|
|
389
|
+
p result
|
|
390
|
+
rescue BudgeaClient::ApiError => e
|
|
391
|
+
puts "Exception when calling AuthenticationApi->certificate_type_get: #{e}"
|
|
392
|
+
end
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
### Parameters
|
|
396
|
+
|
|
397
|
+
Name | Type | Description | Notes
|
|
398
|
+
------------- | ------------- | ------------- | -------------
|
|
399
|
+
**type** | **String**| |
|
|
400
|
+
**expand** | **String**| | [optional]
|
|
401
|
+
|
|
402
|
+
### Return type
|
|
403
|
+
|
|
404
|
+
[**Certificate**](Certificate.md)
|
|
405
|
+
|
|
406
|
+
### Authorization
|
|
407
|
+
|
|
408
|
+
[api_key](../README.md#api_key)
|
|
409
|
+
|
|
410
|
+
### HTTP request headers
|
|
411
|
+
|
|
412
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
413
|
+
- **Accept**: application/json
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
235
417
|
# **hash_delete**
|
|
236
418
|
> hash_delete
|
|
237
419
|
|
|
@@ -300,10 +482,10 @@ end
|
|
|
300
482
|
|
|
301
483
|
api_instance = BudgeaClient::AuthenticationApi.new
|
|
302
484
|
|
|
303
|
-
id_user =
|
|
485
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
304
486
|
|
|
305
487
|
opts = {
|
|
306
|
-
expand:
|
|
488
|
+
expand: 'expand_example' # String |
|
|
307
489
|
}
|
|
308
490
|
|
|
309
491
|
begin
|
|
@@ -358,10 +540,10 @@ end
|
|
|
358
540
|
|
|
359
541
|
api_instance = BudgeaClient::AuthenticationApi.new
|
|
360
542
|
|
|
361
|
-
id_user =
|
|
543
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
362
544
|
|
|
363
545
|
opts = {
|
|
364
|
-
expand:
|
|
546
|
+
expand: 'expand_example' # String |
|
|
365
547
|
}
|
|
366
548
|
|
|
367
549
|
begin
|
|
@@ -416,9 +598,9 @@ end
|
|
|
416
598
|
|
|
417
599
|
api_instance = BudgeaClient::AuthenticationApi.new
|
|
418
600
|
|
|
419
|
-
id_user =
|
|
601
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
420
602
|
|
|
421
|
-
application =
|
|
603
|
+
application = 'application_example' # String | application name
|
|
422
604
|
|
|
423
605
|
|
|
424
606
|
begin
|
|
@@ -447,7 +629,71 @@ Name | Type | Description | Notes
|
|
|
447
629
|
|
|
448
630
|
### HTTP request headers
|
|
449
631
|
|
|
450
|
-
- **Content-Type**:
|
|
632
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
633
|
+
- **Accept**: application/json
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
# **webauth_get**
|
|
638
|
+
> webauth_get(opts)
|
|
639
|
+
|
|
640
|
+
Initialize a new OAuth2 proxy session.
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
### Example
|
|
645
|
+
```ruby
|
|
646
|
+
# load the gem
|
|
647
|
+
require 'budgea_client'
|
|
648
|
+
# setup authorization
|
|
649
|
+
BudgeaClient.configure do |config|
|
|
650
|
+
# Configure API key authorization: api_key
|
|
651
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
652
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
653
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
api_instance = BudgeaClient::AuthenticationApi.new
|
|
657
|
+
|
|
658
|
+
opts = {
|
|
659
|
+
id_connector: 56, # Integer | ID of the connector
|
|
660
|
+
client_id: 56, # Integer | Client Application ID
|
|
661
|
+
redirect_uri: 'redirect_uri_example', # String | Redirect URI
|
|
662
|
+
state: 'state_example', # String | Optional state
|
|
663
|
+
fields: 'fields_example', # String | Optional fields
|
|
664
|
+
id_connection: 56 # Integer | Optional already existing connection to update
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
begin
|
|
668
|
+
#Initialize a new OAuth2 proxy session.
|
|
669
|
+
api_instance.webauth_get(opts)
|
|
670
|
+
rescue BudgeaClient::ApiError => e
|
|
671
|
+
puts "Exception when calling AuthenticationApi->webauth_get: #{e}"
|
|
672
|
+
end
|
|
673
|
+
```
|
|
674
|
+
|
|
675
|
+
### Parameters
|
|
676
|
+
|
|
677
|
+
Name | Type | Description | Notes
|
|
678
|
+
------------- | ------------- | ------------- | -------------
|
|
679
|
+
**id_connector** | **Integer**| ID of the connector | [optional]
|
|
680
|
+
**client_id** | **Integer**| Client Application ID | [optional]
|
|
681
|
+
**redirect_uri** | **String**| Redirect URI | [optional]
|
|
682
|
+
**state** | **String**| Optional state | [optional]
|
|
683
|
+
**fields** | **String**| Optional fields | [optional]
|
|
684
|
+
**id_connection** | **Integer**| Optional already existing connection to update | [optional]
|
|
685
|
+
|
|
686
|
+
### Return type
|
|
687
|
+
|
|
688
|
+
nil (empty response body)
|
|
689
|
+
|
|
690
|
+
### Authorization
|
|
691
|
+
|
|
692
|
+
[api_key](../README.md#api_key)
|
|
693
|
+
|
|
694
|
+
### HTTP request headers
|
|
695
|
+
|
|
696
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
451
697
|
- **Accept**: application/json
|
|
452
698
|
|
|
453
699
|
|
data/docs/BankCategory.md
CHANGED
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**id** | **Integer** | ID of the bank category |
|
|
7
|
-
**name** | **String** | Name of the category | [default to
|
|
7
|
+
**name** | **String** | Name of the category | [default to 'false']
|
|
8
8
|
|
|
9
9
|
|
data/docs/BanksApi.md
CHANGED
|
@@ -10,29 +10,30 @@ Method | HTTP request | Description
|
|
|
10
10
|
[**banks_categories_id_category_post**](BanksApi.md#banks_categories_id_category_post) | **POST** /banks/categories/{id_category} | Edit a bank categories
|
|
11
11
|
[**banks_categories_post**](BanksApi.md#banks_categories_post) | **POST** /banks/categories | Create bank categories
|
|
12
12
|
[**banks_get**](BanksApi.md#banks_get) | **GET** /banks | Get list of connectors
|
|
13
|
-
[**
|
|
14
|
-
[**
|
|
15
|
-
[**
|
|
16
|
-
[**
|
|
13
|
+
[**banks_id_connector_connections_get**](BanksApi.md#banks_id_connector_connections_get) | **GET** /banks/{id_connector}/connections | Get a subset of id_connection with the largest diversity of account
|
|
14
|
+
[**banks_id_connector_logos_get**](BanksApi.md#banks_id_connector_logos_get) | **GET** /banks/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
15
|
+
[**banks_id_connector_logos_main_get**](BanksApi.md#banks_id_connector_logos_main_get) | **GET** /banks/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
16
|
+
[**banks_id_connector_logos_thumbnail_get**](BanksApi.md#banks_id_connector_logos_thumbnail_get) | **GET** /banks/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
17
17
|
[**categories_get**](BanksApi.md#categories_get) | **GET** /categories | Get all categories
|
|
18
18
|
[**categorize_post**](BanksApi.md#categorize_post) | **POST** /categorize | categorize transactions without storing them
|
|
19
19
|
[**connections_get**](BanksApi.md#connections_get) | **GET** /connections | Get connections without a user
|
|
20
20
|
[**connectors_get**](BanksApi.md#connectors_get) | **GET** /connectors | Get list of connectors
|
|
21
|
-
[**
|
|
22
|
-
[**
|
|
23
|
-
[**
|
|
24
|
-
[**
|
|
25
|
-
[**
|
|
26
|
-
[**
|
|
27
|
-
[**
|
|
28
|
-
[**connectors_id_connector_put**](BanksApi.md#connectors_id_connector_put) | **PUT** /connectors/{id_connector} | Edit the provided
|
|
21
|
+
[**connectors_id_connector_logos_get**](BanksApi.md#connectors_id_connector_logos_get) | **GET** /connectors/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
22
|
+
[**connectors_id_connector_logos_id_logo_delete**](BanksApi.md#connectors_id_connector_logos_id_logo_delete) | **DELETE** /connectors/{id_connector}/logos/{id_logo} | Delete a single Logo object.
|
|
23
|
+
[**connectors_id_connector_logos_id_logo_put**](BanksApi.md#connectors_id_connector_logos_id_logo_put) | **PUT** /connectors/{id_connector}/logos/{id_logo} | Create or Update a connector Logo.
|
|
24
|
+
[**connectors_id_connector_logos_main_get**](BanksApi.md#connectors_id_connector_logos_main_get) | **GET** /connectors/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
25
|
+
[**connectors_id_connector_logos_post**](BanksApi.md#connectors_id_connector_logos_post) | **POST** /connectors/{id_connector}/logos | Create a connector Logo
|
|
26
|
+
[**connectors_id_connector_logos_put**](BanksApi.md#connectors_id_connector_logos_put) | **PUT** /connectors/{id_connector}/logos | Create or Update a connector Logo
|
|
27
|
+
[**connectors_id_connector_logos_thumbnail_get**](BanksApi.md#connectors_id_connector_logos_thumbnail_get) | **GET** /connectors/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
28
|
+
[**connectors_id_connector_put**](BanksApi.md#connectors_id_connector_put) | **PUT** /connectors/{id_connector} | Edit the provided connector
|
|
29
29
|
[**connectors_post**](BanksApi.md#connectors_post) | **POST** /connectors | Request a new connector
|
|
30
30
|
[**invoicing_get**](BanksApi.md#invoicing_get) | **GET** /invoicing | Get number of accounts, connections and users synced.
|
|
31
31
|
[**logs_get**](BanksApi.md#logs_get) | **GET** /logs | Get connection logs
|
|
32
32
|
[**providers_get**](BanksApi.md#providers_get) | **GET** /providers | Get list of connectors
|
|
33
|
-
[**
|
|
34
|
-
[**
|
|
35
|
-
[**
|
|
33
|
+
[**providers_id_connector_connections_get**](BanksApi.md#providers_id_connector_connections_get) | **GET** /providers/{id_connector}/connections | Get a random subset of provider's id_connection
|
|
34
|
+
[**providers_id_connector_logos_get**](BanksApi.md#providers_id_connector_logos_get) | **GET** /providers/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
35
|
+
[**providers_id_connector_logos_main_get**](BanksApi.md#providers_id_connector_logos_main_get) | **GET** /providers/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
36
|
+
[**providers_id_connector_logos_thumbnail_get**](BanksApi.md#providers_id_connector_logos_thumbnail_get) | **GET** /providers/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
36
37
|
[**users_id_user_account_types_get**](BanksApi.md#users_id_user_account_types_get) | **GET** /users/{id_user}/account_types | Get account types
|
|
37
38
|
[**users_id_user_account_types_id_account_type_get**](BanksApi.md#users_id_user_account_types_id_account_type_get) | **GET** /users/{id_user}/account_types/{id_account_type} | Get an account type
|
|
38
39
|
[**users_id_user_accounts_delete**](BanksApi.md#users_id_user_accounts_delete) | **DELETE** /users/{id_user}/accounts | Delete all accounts
|
|
@@ -56,8 +57,12 @@ Method | HTTP request | Description
|
|
|
56
57
|
[**users_id_user_accounts_id_account_transactionsclusters_id_transactionscluster_put**](BanksApi.md#users_id_user_accounts_id_account_transactionsclusters_id_transactionscluster_put) | **PUT** /users/{id_user}/accounts/{id_account}/transactionsclusters/{id_transactionscluster} | Edit a clustered transaction
|
|
57
58
|
[**users_id_user_accounts_id_account_transactionsclusters_post**](BanksApi.md#users_id_user_accounts_id_account_transactionsclusters_post) | **POST** /users/{id_user}/accounts/{id_account}/transactionsclusters | Create clustered transaction
|
|
58
59
|
[**users_id_user_accounts_post**](BanksApi.md#users_id_user_accounts_post) | **POST** /users/{id_user}/accounts | Create an account
|
|
60
|
+
[**users_id_user_accounts_put**](BanksApi.md#users_id_user_accounts_put) | **PUT** /users/{id_user}/accounts | Update many accounts at once
|
|
59
61
|
[**users_id_user_alerts_get**](BanksApi.md#users_id_user_alerts_get) | **GET** /users/{id_user}/alerts | Get alerts
|
|
60
62
|
[**users_id_user_categories_full_get**](BanksApi.md#users_id_user_categories_full_get) | **GET** /users/{id_user}/categories/full | Get the category
|
|
63
|
+
[**users_id_user_categories_full_id_full_delete**](BanksApi.md#users_id_user_categories_full_id_full_delete) | **DELETE** /users/{id_user}/categories/full/{id_full} | Delete a user-created transaction category
|
|
64
|
+
[**users_id_user_categories_full_id_full_put**](BanksApi.md#users_id_user_categories_full_id_full_put) | **PUT** /users/{id_user}/categories/full/{id_full} | Modify a user-created category
|
|
65
|
+
[**users_id_user_categories_full_post**](BanksApi.md#users_id_user_categories_full_post) | **POST** /users/{id_user}/categories/full | Create a new transaction category
|
|
61
66
|
[**users_id_user_categories_get**](BanksApi.md#users_id_user_categories_get) | **GET** /users/{id_user}/categories | Get the category
|
|
62
67
|
[**users_id_user_connections_delete**](BanksApi.md#users_id_user_connections_delete) | **DELETE** /users/{id_user}/connections | Delete all connections
|
|
63
68
|
[**users_id_user_connections_get**](BanksApi.md#users_id_user_connections_get) | **GET** /users/{id_user}/connections | Get connections
|
|
@@ -82,6 +87,7 @@ Method | HTTP request | Description
|
|
|
82
87
|
[**users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactionscluster_put**](BanksApi.md#users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactionscluster_put) | **PUT** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/transactionsclusters/{id_transactionscluster} | Edit a clustered transaction
|
|
83
88
|
[**users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_post**](BanksApi.md#users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_post) | **POST** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/transactionsclusters | Create clustered transaction
|
|
84
89
|
[**users_id_user_connections_id_connection_accounts_post**](BanksApi.md#users_id_user_connections_id_connection_accounts_post) | **POST** /users/{id_user}/connections/{id_connection}/accounts | Create an account
|
|
90
|
+
[**users_id_user_connections_id_connection_accounts_put**](BanksApi.md#users_id_user_connections_id_connection_accounts_put) | **PUT** /users/{id_user}/connections/{id_connection}/accounts | Update many accounts at once
|
|
85
91
|
[**users_id_user_connections_id_connection_delete**](BanksApi.md#users_id_user_connections_id_connection_delete) | **DELETE** /users/{id_user}/connections/{id_connection} | Delete a connection.
|
|
86
92
|
[**users_id_user_connections_id_connection_informations_get**](BanksApi.md#users_id_user_connections_id_connection_informations_get) | **GET** /users/{id_user}/connections/{id_connection}/informations | Get connection additionnal informations
|
|
87
93
|
[**users_id_user_connections_id_connection_logs_get**](BanksApi.md#users_id_user_connections_id_connection_logs_get) | **GET** /users/{id_user}/connections/{id_connection}/logs | Get connection logs
|
|
@@ -140,7 +146,7 @@ end
|
|
|
140
146
|
api_instance = BudgeaClient::BanksApi.new
|
|
141
147
|
|
|
142
148
|
opts = {
|
|
143
|
-
expand:
|
|
149
|
+
expand: 'expand_example' # String |
|
|
144
150
|
}
|
|
145
151
|
|
|
146
152
|
begin
|
|
@@ -197,7 +203,7 @@ api_instance = BudgeaClient::BanksApi.new
|
|
|
197
203
|
id_account_type = 56 # Integer |
|
|
198
204
|
|
|
199
205
|
opts = {
|
|
200
|
-
expand:
|
|
206
|
+
expand: 'expand_example' # String |
|
|
201
207
|
}
|
|
202
208
|
|
|
203
209
|
begin
|
|
@@ -232,7 +238,7 @@ Name | Type | Description | Notes
|
|
|
232
238
|
|
|
233
239
|
|
|
234
240
|
# **banks_categories_id_category_delete**
|
|
235
|
-
>
|
|
241
|
+
> ConnectorCategory banks_categories_id_category_delete(id_category, opts)
|
|
236
242
|
|
|
237
243
|
Delete the supplied category
|
|
238
244
|
|
|
@@ -255,7 +261,7 @@ api_instance = BudgeaClient::BanksApi.new
|
|
|
255
261
|
id_category = 56 # Integer |
|
|
256
262
|
|
|
257
263
|
opts = {
|
|
258
|
-
expand:
|
|
264
|
+
expand: 'expand_example' # String |
|
|
259
265
|
}
|
|
260
266
|
|
|
261
267
|
begin
|
|
@@ -276,7 +282,7 @@ Name | Type | Description | Notes
|
|
|
276
282
|
|
|
277
283
|
### Return type
|
|
278
284
|
|
|
279
|
-
[**
|
|
285
|
+
[**ConnectorCategory**](ConnectorCategory.md)
|
|
280
286
|
|
|
281
287
|
### Authorization
|
|
282
288
|
|
|
@@ -290,7 +296,7 @@ Name | Type | Description | Notes
|
|
|
290
296
|
|
|
291
297
|
|
|
292
298
|
# **banks_categories_id_category_post**
|
|
293
|
-
>
|
|
299
|
+
> ConnectorCategory banks_categories_id_category_post(id_category, name, opts)
|
|
294
300
|
|
|
295
301
|
Edit a bank categories
|
|
296
302
|
|
|
@@ -312,10 +318,10 @@ api_instance = BudgeaClient::BanksApi.new
|
|
|
312
318
|
|
|
313
319
|
id_category = 56 # Integer |
|
|
314
320
|
|
|
315
|
-
name =
|
|
321
|
+
name = 'name_example' # String | new name for the supplied category
|
|
316
322
|
|
|
317
323
|
opts = {
|
|
318
|
-
expand:
|
|
324
|
+
expand: 'expand_example' # String |
|
|
319
325
|
}
|
|
320
326
|
|
|
321
327
|
begin
|
|
@@ -337,7 +343,7 @@ Name | Type | Description | Notes
|
|
|
337
343
|
|
|
338
344
|
### Return type
|
|
339
345
|
|
|
340
|
-
[**
|
|
346
|
+
[**ConnectorCategory**](ConnectorCategory.md)
|
|
341
347
|
|
|
342
348
|
### Authorization
|
|
343
349
|
|
|
@@ -351,7 +357,7 @@ Name | Type | Description | Notes
|
|
|
351
357
|
|
|
352
358
|
|
|
353
359
|
# **banks_categories_post**
|
|
354
|
-
>
|
|
360
|
+
> ConnectorCategory banks_categories_post(name, opts)
|
|
355
361
|
|
|
356
362
|
Create bank categories
|
|
357
363
|
|
|
@@ -371,10 +377,10 @@ end
|
|
|
371
377
|
|
|
372
378
|
api_instance = BudgeaClient::BanksApi.new
|
|
373
379
|
|
|
374
|
-
name =
|
|
380
|
+
name = 'name_example' # String | name of the category to be created
|
|
375
381
|
|
|
376
382
|
opts = {
|
|
377
|
-
expand:
|
|
383
|
+
expand: 'expand_example' # String |
|
|
378
384
|
}
|
|
379
385
|
|
|
380
386
|
begin
|
|
@@ -395,7 +401,7 @@ Name | Type | Description | Notes
|
|
|
395
401
|
|
|
396
402
|
### Return type
|
|
397
403
|
|
|
398
|
-
[**
|
|
404
|
+
[**ConnectorCategory**](ConnectorCategory.md)
|
|
399
405
|
|
|
400
406
|
### Authorization
|
|
401
407
|
|
|
@@ -409,7 +415,7 @@ Name | Type | Description | Notes
|
|
|
409
415
|
|
|
410
416
|
|
|
411
417
|
# **banks_get**
|
|
412
|
-
>
|
|
418
|
+
> InlineResponse2008 banks_get(opts)
|
|
413
419
|
|
|
414
420
|
Get list of connectors
|
|
415
421
|
|
|
@@ -430,7 +436,7 @@ end
|
|
|
430
436
|
api_instance = BudgeaClient::BanksApi.new
|
|
431
437
|
|
|
432
438
|
opts = {
|
|
433
|
-
expand:
|
|
439
|
+
expand: 'expand_example' # String |
|
|
434
440
|
}
|
|
435
441
|
|
|
436
442
|
begin
|
|
@@ -450,7 +456,7 @@ Name | Type | Description | Notes
|
|
|
450
456
|
|
|
451
457
|
### Return type
|
|
452
458
|
|
|
453
|
-
[**
|
|
459
|
+
[**InlineResponse2008**](InlineResponse2008.md)
|
|
454
460
|
|
|
455
461
|
### Authorization
|
|
456
462
|
|
|
@@ -463,8 +469,8 @@ Name | Type | Description | Notes
|
|
|
463
469
|
|
|
464
470
|
|
|
465
471
|
|
|
466
|
-
# **
|
|
467
|
-
>
|
|
472
|
+
# **banks_id_connector_connections_get**
|
|
473
|
+
> InlineResponse2009 banks_id_connector_connections_get(id_connector, opts)
|
|
468
474
|
|
|
469
475
|
Get a subset of id_connection with the largest diversity of account
|
|
470
476
|
|
|
@@ -484,20 +490,20 @@ end
|
|
|
484
490
|
|
|
485
491
|
api_instance = BudgeaClient::BanksApi.new
|
|
486
492
|
|
|
487
|
-
|
|
493
|
+
id_connector = 56 # Integer |
|
|
488
494
|
|
|
489
495
|
opts = {
|
|
490
496
|
range: 56, # Integer | the length of the connection subset
|
|
491
497
|
type: 56, # Integer | to target a specific account type which will be
|
|
492
|
-
expand:
|
|
498
|
+
expand: 'expand_example' # String |
|
|
493
499
|
}
|
|
494
500
|
|
|
495
501
|
begin
|
|
496
502
|
#Get a subset of id_connection with the largest diversity of account
|
|
497
|
-
result = api_instance.
|
|
503
|
+
result = api_instance.banks_id_connector_connections_get(id_connector, opts)
|
|
498
504
|
p result
|
|
499
505
|
rescue BudgeaClient::ApiError => e
|
|
500
|
-
puts "Exception when calling BanksApi->
|
|
506
|
+
puts "Exception when calling BanksApi->banks_id_connector_connections_get: #{e}"
|
|
501
507
|
end
|
|
502
508
|
```
|
|
503
509
|
|
|
@@ -505,14 +511,14 @@ end
|
|
|
505
511
|
|
|
506
512
|
Name | Type | Description | Notes
|
|
507
513
|
------------- | ------------- | ------------- | -------------
|
|
508
|
-
**
|
|
514
|
+
**id_connector** | **Integer**| |
|
|
509
515
|
**range** | **Integer**| the length of the connection subset | [optional]
|
|
510
516
|
**type** | **Integer**| to target a specific account type which will be | [optional]
|
|
511
517
|
**expand** | **String**| | [optional]
|
|
512
518
|
|
|
513
519
|
### Return type
|
|
514
520
|
|
|
515
|
-
[**
|
|
521
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
516
522
|
|
|
517
523
|
### Authorization
|
|
518
524
|
|
|
@@ -525,12 +531,12 @@ Name | Type | Description | Notes
|
|
|
525
531
|
|
|
526
532
|
|
|
527
533
|
|
|
528
|
-
# **
|
|
529
|
-
>
|
|
534
|
+
# **banks_id_connector_logos_get**
|
|
535
|
+
> InlineResponse20010 banks_id_connector_logos_get(id_connector, opts)
|
|
530
536
|
|
|
531
|
-
Get all links to the files associated with this
|
|
537
|
+
Get all links to the files associated with this connector.
|
|
532
538
|
|
|
533
|
-
This endpoint returns all links to files associated with this
|
|
539
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
534
540
|
|
|
535
541
|
### Example
|
|
536
542
|
```ruby
|
|
@@ -546,18 +552,18 @@ end
|
|
|
546
552
|
|
|
547
553
|
api_instance = BudgeaClient::BanksApi.new
|
|
548
554
|
|
|
549
|
-
|
|
555
|
+
id_connector = 56 # Integer |
|
|
550
556
|
|
|
551
557
|
opts = {
|
|
552
|
-
expand:
|
|
558
|
+
expand: 'expand_example' # String |
|
|
553
559
|
}
|
|
554
560
|
|
|
555
561
|
begin
|
|
556
|
-
#Get all links to the files associated with this
|
|
557
|
-
result = api_instance.
|
|
562
|
+
#Get all links to the files associated with this connector.
|
|
563
|
+
result = api_instance.banks_id_connector_logos_get(id_connector, opts)
|
|
558
564
|
p result
|
|
559
565
|
rescue BudgeaClient::ApiError => e
|
|
560
|
-
puts "Exception when calling BanksApi->
|
|
566
|
+
puts "Exception when calling BanksApi->banks_id_connector_logos_get: #{e}"
|
|
561
567
|
end
|
|
562
568
|
```
|
|
563
569
|
|
|
@@ -565,12 +571,12 @@ end
|
|
|
565
571
|
|
|
566
572
|
Name | Type | Description | Notes
|
|
567
573
|
------------- | ------------- | ------------- | -------------
|
|
568
|
-
**
|
|
574
|
+
**id_connector** | **Integer**| |
|
|
569
575
|
**expand** | **String**| | [optional]
|
|
570
576
|
|
|
571
577
|
### Return type
|
|
572
578
|
|
|
573
|
-
[**
|
|
579
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
574
580
|
|
|
575
581
|
### Authorization
|
|
576
582
|
|
|
@@ -583,12 +589,12 @@ Name | Type | Description | Notes
|
|
|
583
589
|
|
|
584
590
|
|
|
585
591
|
|
|
586
|
-
# **
|
|
587
|
-
>
|
|
592
|
+
# **banks_id_connector_logos_main_get**
|
|
593
|
+
> InlineResponse20010 banks_id_connector_logos_main_get(id_connector, opts)
|
|
588
594
|
|
|
589
|
-
Get all links to the files associated with this
|
|
595
|
+
Get all links to the files associated with this connector.
|
|
590
596
|
|
|
591
|
-
This endpoint returns all links to files associated with this
|
|
597
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
592
598
|
|
|
593
599
|
### Example
|
|
594
600
|
```ruby
|
|
@@ -604,18 +610,18 @@ end
|
|
|
604
610
|
|
|
605
611
|
api_instance = BudgeaClient::BanksApi.new
|
|
606
612
|
|
|
607
|
-
|
|
613
|
+
id_connector = 56 # Integer |
|
|
608
614
|
|
|
609
615
|
opts = {
|
|
610
|
-
expand:
|
|
616
|
+
expand: 'expand_example' # String |
|
|
611
617
|
}
|
|
612
618
|
|
|
613
619
|
begin
|
|
614
|
-
#Get all links to the files associated with this
|
|
615
|
-
result = api_instance.
|
|
620
|
+
#Get all links to the files associated with this connector.
|
|
621
|
+
result = api_instance.banks_id_connector_logos_main_get(id_connector, opts)
|
|
616
622
|
p result
|
|
617
623
|
rescue BudgeaClient::ApiError => e
|
|
618
|
-
puts "Exception when calling BanksApi->
|
|
624
|
+
puts "Exception when calling BanksApi->banks_id_connector_logos_main_get: #{e}"
|
|
619
625
|
end
|
|
620
626
|
```
|
|
621
627
|
|
|
@@ -623,12 +629,12 @@ end
|
|
|
623
629
|
|
|
624
630
|
Name | Type | Description | Notes
|
|
625
631
|
------------- | ------------- | ------------- | -------------
|
|
626
|
-
**
|
|
632
|
+
**id_connector** | **Integer**| |
|
|
627
633
|
**expand** | **String**| | [optional]
|
|
628
634
|
|
|
629
635
|
### Return type
|
|
630
636
|
|
|
631
|
-
[**
|
|
637
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
632
638
|
|
|
633
639
|
### Authorization
|
|
634
640
|
|
|
@@ -641,12 +647,12 @@ Name | Type | Description | Notes
|
|
|
641
647
|
|
|
642
648
|
|
|
643
649
|
|
|
644
|
-
# **
|
|
645
|
-
>
|
|
650
|
+
# **banks_id_connector_logos_thumbnail_get**
|
|
651
|
+
> InlineResponse20010 banks_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
646
652
|
|
|
647
|
-
Get all links to the files associated with this
|
|
653
|
+
Get all links to the files associated with this connector.
|
|
648
654
|
|
|
649
|
-
This endpoint returns all links to files associated with this
|
|
655
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
650
656
|
|
|
651
657
|
### Example
|
|
652
658
|
```ruby
|
|
@@ -662,18 +668,18 @@ end
|
|
|
662
668
|
|
|
663
669
|
api_instance = BudgeaClient::BanksApi.new
|
|
664
670
|
|
|
665
|
-
|
|
671
|
+
id_connector = 56 # Integer |
|
|
666
672
|
|
|
667
673
|
opts = {
|
|
668
|
-
expand:
|
|
674
|
+
expand: 'expand_example' # String |
|
|
669
675
|
}
|
|
670
676
|
|
|
671
677
|
begin
|
|
672
|
-
#Get all links to the files associated with this
|
|
673
|
-
result = api_instance.
|
|
678
|
+
#Get all links to the files associated with this connector.
|
|
679
|
+
result = api_instance.banks_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
674
680
|
p result
|
|
675
681
|
rescue BudgeaClient::ApiError => e
|
|
676
|
-
puts "Exception when calling BanksApi->
|
|
682
|
+
puts "Exception when calling BanksApi->banks_id_connector_logos_thumbnail_get: #{e}"
|
|
677
683
|
end
|
|
678
684
|
```
|
|
679
685
|
|
|
@@ -681,12 +687,12 @@ end
|
|
|
681
687
|
|
|
682
688
|
Name | Type | Description | Notes
|
|
683
689
|
------------- | ------------- | ------------- | -------------
|
|
684
|
-
**
|
|
690
|
+
**id_connector** | **Integer**| |
|
|
685
691
|
**expand** | **String**| | [optional]
|
|
686
692
|
|
|
687
693
|
### Return type
|
|
688
694
|
|
|
689
|
-
[**
|
|
695
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
690
696
|
|
|
691
697
|
### Authorization
|
|
692
698
|
|
|
@@ -700,7 +706,7 @@ Name | Type | Description | Notes
|
|
|
700
706
|
|
|
701
707
|
|
|
702
708
|
# **categories_get**
|
|
703
|
-
>
|
|
709
|
+
> InlineResponse20011 categories_get(opts)
|
|
704
710
|
|
|
705
711
|
Get all categories
|
|
706
712
|
|
|
@@ -721,7 +727,7 @@ end
|
|
|
721
727
|
api_instance = BudgeaClient::BanksApi.new
|
|
722
728
|
|
|
723
729
|
opts = {
|
|
724
|
-
expand:
|
|
730
|
+
expand: 'expand_example' # String |
|
|
725
731
|
}
|
|
726
732
|
|
|
727
733
|
begin
|
|
@@ -741,7 +747,7 @@ Name | Type | Description | Notes
|
|
|
741
747
|
|
|
742
748
|
### Return type
|
|
743
749
|
|
|
744
|
-
[**
|
|
750
|
+
[**InlineResponse20011**](InlineResponse20011.md)
|
|
745
751
|
|
|
746
752
|
### Authorization
|
|
747
753
|
|
|
@@ -775,11 +781,11 @@ end
|
|
|
775
781
|
|
|
776
782
|
api_instance = BudgeaClient::BanksApi.new
|
|
777
783
|
|
|
778
|
-
wording =
|
|
784
|
+
wording = 'wording_example' # String | label of the transaction
|
|
779
785
|
|
|
780
|
-
value = 56 # Integer |
|
|
786
|
+
value = 56 # Integer | value of the transaction
|
|
781
787
|
|
|
782
|
-
type =
|
|
788
|
+
type = 'type_example' # String | type of the transaction (default: unknown)
|
|
783
789
|
|
|
784
790
|
|
|
785
791
|
begin
|
|
@@ -796,7 +802,7 @@ end
|
|
|
796
802
|
Name | Type | Description | Notes
|
|
797
803
|
------------- | ------------- | ------------- | -------------
|
|
798
804
|
**wording** | **String**| label of the transaction |
|
|
799
|
-
**value** | **Integer**|
|
|
805
|
+
**value** | **Integer**| value of the transaction |
|
|
800
806
|
**type** | **String**| type of the transaction (default: unknown) |
|
|
801
807
|
|
|
802
808
|
### Return type
|
|
@@ -815,7 +821,7 @@ Name | Type | Description | Notes
|
|
|
815
821
|
|
|
816
822
|
|
|
817
823
|
# **connections_get**
|
|
818
|
-
>
|
|
824
|
+
> InlineResponse2009 connections_get(opts)
|
|
819
825
|
|
|
820
826
|
Get connections without a user
|
|
821
827
|
|
|
@@ -836,7 +842,7 @@ end
|
|
|
836
842
|
api_instance = BudgeaClient::BanksApi.new
|
|
837
843
|
|
|
838
844
|
opts = {
|
|
839
|
-
expand:
|
|
845
|
+
expand: 'expand_example' # String |
|
|
840
846
|
}
|
|
841
847
|
|
|
842
848
|
begin
|
|
@@ -856,7 +862,7 @@ Name | Type | Description | Notes
|
|
|
856
862
|
|
|
857
863
|
### Return type
|
|
858
864
|
|
|
859
|
-
[**
|
|
865
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
860
866
|
|
|
861
867
|
### Authorization
|
|
862
868
|
|
|
@@ -870,7 +876,7 @@ Name | Type | Description | Notes
|
|
|
870
876
|
|
|
871
877
|
|
|
872
878
|
# **connectors_get**
|
|
873
|
-
>
|
|
879
|
+
> InlineResponse20013 connectors_get(opts)
|
|
874
880
|
|
|
875
881
|
Get list of connectors
|
|
876
882
|
|
|
@@ -891,7 +897,7 @@ end
|
|
|
891
897
|
api_instance = BudgeaClient::BanksApi.new
|
|
892
898
|
|
|
893
899
|
opts = {
|
|
894
|
-
expand:
|
|
900
|
+
expand: 'expand_example' # String |
|
|
895
901
|
}
|
|
896
902
|
|
|
897
903
|
begin
|
|
@@ -911,7 +917,7 @@ Name | Type | Description | Notes
|
|
|
911
917
|
|
|
912
918
|
### Return type
|
|
913
919
|
|
|
914
|
-
[**
|
|
920
|
+
[**InlineResponse20013**](InlineResponse20013.md)
|
|
915
921
|
|
|
916
922
|
### Authorization
|
|
917
923
|
|
|
@@ -924,12 +930,12 @@ Name | Type | Description | Notes
|
|
|
924
930
|
|
|
925
931
|
|
|
926
932
|
|
|
927
|
-
# **
|
|
928
|
-
>
|
|
933
|
+
# **connectors_id_connector_logos_get**
|
|
934
|
+
> InlineResponse20010 connectors_id_connector_logos_get(id_connector, opts)
|
|
929
935
|
|
|
930
|
-
Get all links to the files associated with this
|
|
936
|
+
Get all links to the files associated with this connector.
|
|
931
937
|
|
|
932
|
-
This endpoint returns all links to files associated with this
|
|
938
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
933
939
|
|
|
934
940
|
### Example
|
|
935
941
|
```ruby
|
|
@@ -945,18 +951,18 @@ end
|
|
|
945
951
|
|
|
946
952
|
api_instance = BudgeaClient::BanksApi.new
|
|
947
953
|
|
|
948
|
-
|
|
954
|
+
id_connector = 56 # Integer |
|
|
949
955
|
|
|
950
956
|
opts = {
|
|
951
|
-
expand:
|
|
957
|
+
expand: 'expand_example' # String |
|
|
952
958
|
}
|
|
953
959
|
|
|
954
960
|
begin
|
|
955
|
-
#Get all links to the files associated with this
|
|
956
|
-
result = api_instance.
|
|
961
|
+
#Get all links to the files associated with this connector.
|
|
962
|
+
result = api_instance.connectors_id_connector_logos_get(id_connector, opts)
|
|
957
963
|
p result
|
|
958
964
|
rescue BudgeaClient::ApiError => e
|
|
959
|
-
puts "Exception when calling BanksApi->
|
|
965
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_get: #{e}"
|
|
960
966
|
end
|
|
961
967
|
```
|
|
962
968
|
|
|
@@ -964,12 +970,12 @@ end
|
|
|
964
970
|
|
|
965
971
|
Name | Type | Description | Notes
|
|
966
972
|
------------- | ------------- | ------------- | -------------
|
|
967
|
-
**
|
|
973
|
+
**id_connector** | **Integer**| |
|
|
968
974
|
**expand** | **String**| | [optional]
|
|
969
975
|
|
|
970
976
|
### Return type
|
|
971
977
|
|
|
972
|
-
[**
|
|
978
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
973
979
|
|
|
974
980
|
### Authorization
|
|
975
981
|
|
|
@@ -982,8 +988,8 @@ Name | Type | Description | Notes
|
|
|
982
988
|
|
|
983
989
|
|
|
984
990
|
|
|
985
|
-
# **
|
|
986
|
-
> ConnectorLogo
|
|
991
|
+
# **connectors_id_connector_logos_id_logo_delete**
|
|
992
|
+
> ConnectorLogo connectors_id_connector_logos_id_logo_delete(id_connector, id_logo, opts)
|
|
987
993
|
|
|
988
994
|
Delete a single Logo object.
|
|
989
995
|
|
|
@@ -1003,20 +1009,20 @@ end
|
|
|
1003
1009
|
|
|
1004
1010
|
api_instance = BudgeaClient::BanksApi.new
|
|
1005
1011
|
|
|
1006
|
-
|
|
1012
|
+
id_connector = 56 # Integer |
|
|
1007
1013
|
|
|
1008
1014
|
id_logo = 56 # Integer |
|
|
1009
1015
|
|
|
1010
1016
|
opts = {
|
|
1011
|
-
expand:
|
|
1017
|
+
expand: 'expand_example' # String |
|
|
1012
1018
|
}
|
|
1013
1019
|
|
|
1014
1020
|
begin
|
|
1015
1021
|
#Delete a single Logo object.
|
|
1016
|
-
result = api_instance.
|
|
1022
|
+
result = api_instance.connectors_id_connector_logos_id_logo_delete(id_connector, id_logo, opts)
|
|
1017
1023
|
p result
|
|
1018
1024
|
rescue BudgeaClient::ApiError => e
|
|
1019
|
-
puts "Exception when calling BanksApi->
|
|
1025
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_id_logo_delete: #{e}"
|
|
1020
1026
|
end
|
|
1021
1027
|
```
|
|
1022
1028
|
|
|
@@ -1024,7 +1030,7 @@ end
|
|
|
1024
1030
|
|
|
1025
1031
|
Name | Type | Description | Notes
|
|
1026
1032
|
------------- | ------------- | ------------- | -------------
|
|
1027
|
-
**
|
|
1033
|
+
**id_connector** | **Integer**| |
|
|
1028
1034
|
**id_logo** | **Integer**| |
|
|
1029
1035
|
**expand** | **String**| | [optional]
|
|
1030
1036
|
|
|
@@ -1043,12 +1049,12 @@ Name | Type | Description | Notes
|
|
|
1043
1049
|
|
|
1044
1050
|
|
|
1045
1051
|
|
|
1046
|
-
# **
|
|
1047
|
-
> ConnectorLogo
|
|
1052
|
+
# **connectors_id_connector_logos_id_logo_put**
|
|
1053
|
+
> ConnectorLogo connectors_id_connector_logos_id_logo_put(id_connector, id_logo, opts)
|
|
1048
1054
|
|
|
1049
|
-
Create or Update a
|
|
1055
|
+
Create or Update a connector Logo.
|
|
1050
1056
|
|
|
1051
|
-
This endpoint creates or update a
|
|
1057
|
+
This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
1052
1058
|
|
|
1053
1059
|
### Example
|
|
1054
1060
|
```ruby
|
|
@@ -1064,20 +1070,20 @@ end
|
|
|
1064
1070
|
|
|
1065
1071
|
api_instance = BudgeaClient::BanksApi.new
|
|
1066
1072
|
|
|
1067
|
-
|
|
1073
|
+
id_connector = 56 # Integer |
|
|
1068
1074
|
|
|
1069
1075
|
id_logo = 56 # Integer |
|
|
1070
1076
|
|
|
1071
1077
|
opts = {
|
|
1072
|
-
expand:
|
|
1078
|
+
expand: 'expand_example' # String |
|
|
1073
1079
|
}
|
|
1074
1080
|
|
|
1075
1081
|
begin
|
|
1076
|
-
#Create or Update a
|
|
1077
|
-
result = api_instance.
|
|
1082
|
+
#Create or Update a connector Logo.
|
|
1083
|
+
result = api_instance.connectors_id_connector_logos_id_logo_put(id_connector, id_logo, opts)
|
|
1078
1084
|
p result
|
|
1079
1085
|
rescue BudgeaClient::ApiError => e
|
|
1080
|
-
puts "Exception when calling BanksApi->
|
|
1086
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_id_logo_put: #{e}"
|
|
1081
1087
|
end
|
|
1082
1088
|
```
|
|
1083
1089
|
|
|
@@ -1085,7 +1091,7 @@ end
|
|
|
1085
1091
|
|
|
1086
1092
|
Name | Type | Description | Notes
|
|
1087
1093
|
------------- | ------------- | ------------- | -------------
|
|
1088
|
-
**
|
|
1094
|
+
**id_connector** | **Integer**| |
|
|
1089
1095
|
**id_logo** | **Integer**| |
|
|
1090
1096
|
**expand** | **String**| | [optional]
|
|
1091
1097
|
|
|
@@ -1104,12 +1110,12 @@ Name | Type | Description | Notes
|
|
|
1104
1110
|
|
|
1105
1111
|
|
|
1106
1112
|
|
|
1107
|
-
# **
|
|
1108
|
-
>
|
|
1113
|
+
# **connectors_id_connector_logos_main_get**
|
|
1114
|
+
> InlineResponse20010 connectors_id_connector_logos_main_get(id_connector, opts)
|
|
1109
1115
|
|
|
1110
|
-
Get all links to the files associated with this
|
|
1116
|
+
Get all links to the files associated with this connector.
|
|
1111
1117
|
|
|
1112
|
-
This endpoint returns all links to files associated with this
|
|
1118
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1113
1119
|
|
|
1114
1120
|
### Example
|
|
1115
1121
|
```ruby
|
|
@@ -1125,18 +1131,18 @@ end
|
|
|
1125
1131
|
|
|
1126
1132
|
api_instance = BudgeaClient::BanksApi.new
|
|
1127
1133
|
|
|
1128
|
-
|
|
1134
|
+
id_connector = 56 # Integer |
|
|
1129
1135
|
|
|
1130
1136
|
opts = {
|
|
1131
|
-
expand:
|
|
1137
|
+
expand: 'expand_example' # String |
|
|
1132
1138
|
}
|
|
1133
1139
|
|
|
1134
1140
|
begin
|
|
1135
|
-
#Get all links to the files associated with this
|
|
1136
|
-
result = api_instance.
|
|
1141
|
+
#Get all links to the files associated with this connector.
|
|
1142
|
+
result = api_instance.connectors_id_connector_logos_main_get(id_connector, opts)
|
|
1137
1143
|
p result
|
|
1138
1144
|
rescue BudgeaClient::ApiError => e
|
|
1139
|
-
puts "Exception when calling BanksApi->
|
|
1145
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_main_get: #{e}"
|
|
1140
1146
|
end
|
|
1141
1147
|
```
|
|
1142
1148
|
|
|
@@ -1144,12 +1150,12 @@ end
|
|
|
1144
1150
|
|
|
1145
1151
|
Name | Type | Description | Notes
|
|
1146
1152
|
------------- | ------------- | ------------- | -------------
|
|
1147
|
-
**
|
|
1153
|
+
**id_connector** | **Integer**| |
|
|
1148
1154
|
**expand** | **String**| | [optional]
|
|
1149
1155
|
|
|
1150
1156
|
### Return type
|
|
1151
1157
|
|
|
1152
|
-
[**
|
|
1158
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1153
1159
|
|
|
1154
1160
|
### Authorization
|
|
1155
1161
|
|
|
@@ -1162,12 +1168,12 @@ Name | Type | Description | Notes
|
|
|
1162
1168
|
|
|
1163
1169
|
|
|
1164
1170
|
|
|
1165
|
-
# **
|
|
1166
|
-
> ConnectorLogo
|
|
1171
|
+
# **connectors_id_connector_logos_post**
|
|
1172
|
+
> ConnectorLogo connectors_id_connector_logos_post(id_connector, opts)
|
|
1167
1173
|
|
|
1168
|
-
Create a
|
|
1174
|
+
Create a connector Logo
|
|
1169
1175
|
|
|
1170
|
-
This endpoint creates a
|
|
1176
|
+
This endpoint creates a connector logo. You can either pass a file to as a parameter to insert and link it with the connector or pass an id_file to link a connector with an existing file. Will fail if the file is already linked with that connector.<br><br>Form params: - id_file (integer): The id of the file to link with that connector. - img (string): Path to the image to link with that connector.<br><br>
|
|
1171
1177
|
|
|
1172
1178
|
### Example
|
|
1173
1179
|
```ruby
|
|
@@ -1183,18 +1189,18 @@ end
|
|
|
1183
1189
|
|
|
1184
1190
|
api_instance = BudgeaClient::BanksApi.new
|
|
1185
1191
|
|
|
1186
|
-
|
|
1192
|
+
id_connector = 56 # Integer |
|
|
1187
1193
|
|
|
1188
1194
|
opts = {
|
|
1189
|
-
expand:
|
|
1195
|
+
expand: 'expand_example' # String |
|
|
1190
1196
|
}
|
|
1191
1197
|
|
|
1192
1198
|
begin
|
|
1193
|
-
#Create a
|
|
1194
|
-
result = api_instance.
|
|
1199
|
+
#Create a connector Logo
|
|
1200
|
+
result = api_instance.connectors_id_connector_logos_post(id_connector, opts)
|
|
1195
1201
|
p result
|
|
1196
1202
|
rescue BudgeaClient::ApiError => e
|
|
1197
|
-
puts "Exception when calling BanksApi->
|
|
1203
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_post: #{e}"
|
|
1198
1204
|
end
|
|
1199
1205
|
```
|
|
1200
1206
|
|
|
@@ -1202,7 +1208,7 @@ end
|
|
|
1202
1208
|
|
|
1203
1209
|
Name | Type | Description | Notes
|
|
1204
1210
|
------------- | ------------- | ------------- | -------------
|
|
1205
|
-
**
|
|
1211
|
+
**id_connector** | **Integer**| |
|
|
1206
1212
|
**expand** | **String**| | [optional]
|
|
1207
1213
|
|
|
1208
1214
|
### Return type
|
|
@@ -1220,12 +1226,12 @@ Name | Type | Description | Notes
|
|
|
1220
1226
|
|
|
1221
1227
|
|
|
1222
1228
|
|
|
1223
|
-
# **
|
|
1224
|
-
> ConnectorLogo
|
|
1229
|
+
# **connectors_id_connector_logos_put**
|
|
1230
|
+
> ConnectorLogo connectors_id_connector_logos_put(id_connector, opts)
|
|
1225
1231
|
|
|
1226
|
-
Create or Update a
|
|
1232
|
+
Create or Update a connector Logo
|
|
1227
1233
|
|
|
1228
|
-
This endpoint creates or update a
|
|
1234
|
+
This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
1229
1235
|
|
|
1230
1236
|
### Example
|
|
1231
1237
|
```ruby
|
|
@@ -1241,18 +1247,18 @@ end
|
|
|
1241
1247
|
|
|
1242
1248
|
api_instance = BudgeaClient::BanksApi.new
|
|
1243
1249
|
|
|
1244
|
-
|
|
1250
|
+
id_connector = 56 # Integer |
|
|
1245
1251
|
|
|
1246
1252
|
opts = {
|
|
1247
|
-
expand:
|
|
1253
|
+
expand: 'expand_example' # String |
|
|
1248
1254
|
}
|
|
1249
1255
|
|
|
1250
1256
|
begin
|
|
1251
|
-
#Create or Update a
|
|
1252
|
-
result = api_instance.
|
|
1257
|
+
#Create or Update a connector Logo
|
|
1258
|
+
result = api_instance.connectors_id_connector_logos_put(id_connector, opts)
|
|
1253
1259
|
p result
|
|
1254
1260
|
rescue BudgeaClient::ApiError => e
|
|
1255
|
-
puts "Exception when calling BanksApi->
|
|
1261
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_put: #{e}"
|
|
1256
1262
|
end
|
|
1257
1263
|
```
|
|
1258
1264
|
|
|
@@ -1260,7 +1266,7 @@ end
|
|
|
1260
1266
|
|
|
1261
1267
|
Name | Type | Description | Notes
|
|
1262
1268
|
------------- | ------------- | ------------- | -------------
|
|
1263
|
-
**
|
|
1269
|
+
**id_connector** | **Integer**| |
|
|
1264
1270
|
**expand** | **String**| | [optional]
|
|
1265
1271
|
|
|
1266
1272
|
### Return type
|
|
@@ -1278,12 +1284,12 @@ Name | Type | Description | Notes
|
|
|
1278
1284
|
|
|
1279
1285
|
|
|
1280
1286
|
|
|
1281
|
-
# **
|
|
1282
|
-
>
|
|
1287
|
+
# **connectors_id_connector_logos_thumbnail_get**
|
|
1288
|
+
> InlineResponse20010 connectors_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1283
1289
|
|
|
1284
|
-
Get all links to the files associated with this
|
|
1290
|
+
Get all links to the files associated with this connector.
|
|
1285
1291
|
|
|
1286
|
-
This endpoint returns all links to files associated with this
|
|
1292
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1287
1293
|
|
|
1288
1294
|
### Example
|
|
1289
1295
|
```ruby
|
|
@@ -1299,18 +1305,18 @@ end
|
|
|
1299
1305
|
|
|
1300
1306
|
api_instance = BudgeaClient::BanksApi.new
|
|
1301
1307
|
|
|
1302
|
-
|
|
1308
|
+
id_connector = 56 # Integer |
|
|
1303
1309
|
|
|
1304
1310
|
opts = {
|
|
1305
|
-
expand:
|
|
1311
|
+
expand: 'expand_example' # String |
|
|
1306
1312
|
}
|
|
1307
1313
|
|
|
1308
1314
|
begin
|
|
1309
|
-
#Get all links to the files associated with this
|
|
1310
|
-
result = api_instance.
|
|
1315
|
+
#Get all links to the files associated with this connector.
|
|
1316
|
+
result = api_instance.connectors_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1311
1317
|
p result
|
|
1312
1318
|
rescue BudgeaClient::ApiError => e
|
|
1313
|
-
puts "Exception when calling BanksApi->
|
|
1319
|
+
puts "Exception when calling BanksApi->connectors_id_connector_logos_thumbnail_get: #{e}"
|
|
1314
1320
|
end
|
|
1315
1321
|
```
|
|
1316
1322
|
|
|
@@ -1318,12 +1324,12 @@ end
|
|
|
1318
1324
|
|
|
1319
1325
|
Name | Type | Description | Notes
|
|
1320
1326
|
------------- | ------------- | ------------- | -------------
|
|
1321
|
-
**
|
|
1327
|
+
**id_connector** | **Integer**| |
|
|
1322
1328
|
**expand** | **String**| | [optional]
|
|
1323
1329
|
|
|
1324
1330
|
### Return type
|
|
1325
1331
|
|
|
1326
|
-
[**
|
|
1332
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1327
1333
|
|
|
1328
1334
|
### Authorization
|
|
1329
1335
|
|
|
@@ -1337,9 +1343,9 @@ Name | Type | Description | Notes
|
|
|
1337
1343
|
|
|
1338
1344
|
|
|
1339
1345
|
# **connectors_id_connector_put**
|
|
1340
|
-
>
|
|
1346
|
+
> Connector connectors_id_connector_put(id_connector, opts)
|
|
1341
1347
|
|
|
1342
|
-
Edit the provided
|
|
1348
|
+
Edit the provided connector
|
|
1343
1349
|
|
|
1344
1350
|
<br><br>
|
|
1345
1351
|
|
|
@@ -1360,14 +1366,14 @@ api_instance = BudgeaClient::BanksApi.new
|
|
|
1360
1366
|
id_connector = 56 # Integer |
|
|
1361
1367
|
|
|
1362
1368
|
opts = {
|
|
1363
|
-
id_categories:
|
|
1369
|
+
id_categories: 'id_categories_example', # String | one or several comma separated categories to map to the given connector (or null to map no category)
|
|
1364
1370
|
hidden: true, # BOOLEAN | to enable or disable connector (bank or provider)
|
|
1365
1371
|
sync_frequency: 56, # Integer | Allows you to overload global sync_frequency param
|
|
1366
|
-
expand:
|
|
1372
|
+
expand: 'expand_example' # String |
|
|
1367
1373
|
}
|
|
1368
1374
|
|
|
1369
1375
|
begin
|
|
1370
|
-
#Edit the provided
|
|
1376
|
+
#Edit the provided connector
|
|
1371
1377
|
result = api_instance.connectors_id_connector_put(id_connector, opts)
|
|
1372
1378
|
p result
|
|
1373
1379
|
rescue BudgeaClient::ApiError => e
|
|
@@ -1380,14 +1386,14 @@ end
|
|
|
1380
1386
|
Name | Type | Description | Notes
|
|
1381
1387
|
------------- | ------------- | ------------- | -------------
|
|
1382
1388
|
**id_connector** | **Integer**| |
|
|
1383
|
-
**id_categories** | **String**| one or several comma separated categories to map to the given
|
|
1389
|
+
**id_categories** | **String**| one or several comma separated categories to map to the given connector (or null to map no category) | [optional]
|
|
1384
1390
|
**hidden** | **BOOLEAN**| to enable or disable connector (bank or provider) | [optional]
|
|
1385
1391
|
**sync_frequency** | **Integer**| Allows you to overload global sync_frequency param | [optional]
|
|
1386
1392
|
**expand** | **String**| | [optional]
|
|
1387
1393
|
|
|
1388
1394
|
### Return type
|
|
1389
1395
|
|
|
1390
|
-
[**
|
|
1396
|
+
[**Connector**](Connector.md)
|
|
1391
1397
|
|
|
1392
1398
|
### Authorization
|
|
1393
1399
|
|
|
@@ -1401,7 +1407,7 @@ Name | Type | Description | Notes
|
|
|
1401
1407
|
|
|
1402
1408
|
|
|
1403
1409
|
# **connectors_post**
|
|
1404
|
-
>
|
|
1410
|
+
> Connector connectors_post(name, login, password, opts)
|
|
1405
1411
|
|
|
1406
1412
|
Request a new connector
|
|
1407
1413
|
|
|
@@ -1421,20 +1427,20 @@ end
|
|
|
1421
1427
|
|
|
1422
1428
|
api_instance = BudgeaClient::BanksApi.new
|
|
1423
1429
|
|
|
1424
|
-
name =
|
|
1430
|
+
name = 'name_example' # String | Name of the bank or provider
|
|
1425
1431
|
|
|
1426
|
-
login =
|
|
1432
|
+
login = 'login_example' # String | Users login
|
|
1427
1433
|
|
|
1428
|
-
password =
|
|
1434
|
+
password = 'password_example' # String | Users password
|
|
1429
1435
|
|
|
1430
1436
|
opts = {
|
|
1431
|
-
api:
|
|
1432
|
-
url:
|
|
1433
|
-
email:
|
|
1434
|
-
types:
|
|
1435
|
-
comment:
|
|
1437
|
+
api: 'api_example', # String | Name of the API
|
|
1438
|
+
url: 'url_example', # String | Url of the bank
|
|
1439
|
+
email: 'email_example', # String | Email of the user
|
|
1440
|
+
types: 'types_example', # String | Type of connector, eg. banks or providers
|
|
1441
|
+
comment: 'comment_example', # String | Optionnal comment
|
|
1436
1442
|
sendmail: true, # BOOLEAN | if set, send an email to user
|
|
1437
|
-
expand:
|
|
1443
|
+
expand: 'expand_example' # String |
|
|
1438
1444
|
}
|
|
1439
1445
|
|
|
1440
1446
|
begin
|
|
@@ -1463,7 +1469,7 @@ Name | Type | Description | Notes
|
|
|
1463
1469
|
|
|
1464
1470
|
### Return type
|
|
1465
1471
|
|
|
1466
|
-
[**
|
|
1472
|
+
[**Connector**](Connector.md)
|
|
1467
1473
|
|
|
1468
1474
|
### Authorization
|
|
1469
1475
|
|
|
@@ -1471,7 +1477,7 @@ Name | Type | Description | Notes
|
|
|
1471
1477
|
|
|
1472
1478
|
### HTTP request headers
|
|
1473
1479
|
|
|
1474
|
-
- **Content-Type**:
|
|
1480
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
1475
1481
|
- **Accept**: application/json
|
|
1476
1482
|
|
|
1477
1483
|
|
|
@@ -1498,10 +1504,10 @@ end
|
|
|
1498
1504
|
api_instance = BudgeaClient::BanksApi.new
|
|
1499
1505
|
|
|
1500
1506
|
opts = {
|
|
1501
|
-
min_date: Date.parse(
|
|
1502
|
-
max_date: Date.parse(
|
|
1503
|
-
period:
|
|
1504
|
-
all:
|
|
1507
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
1508
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
1509
|
+
period: 'period_example', # String | period to group logs
|
|
1510
|
+
all: 'all_example' # String | get full ids list instead of numbers
|
|
1505
1511
|
}
|
|
1506
1512
|
|
|
1507
1513
|
begin
|
|
@@ -1537,7 +1543,7 @@ nil (empty response body)
|
|
|
1537
1543
|
|
|
1538
1544
|
|
|
1539
1545
|
# **logs_get**
|
|
1540
|
-
>
|
|
1546
|
+
> InlineResponse20016 logs_get(opts)
|
|
1541
1547
|
|
|
1542
1548
|
Get connection logs
|
|
1543
1549
|
|
|
@@ -1560,15 +1566,15 @@ api_instance = BudgeaClient::BanksApi.new
|
|
|
1560
1566
|
opts = {
|
|
1561
1567
|
limit: 56, # Integer | limit number of results
|
|
1562
1568
|
offset: 56, # Integer | offset of first result
|
|
1563
|
-
min_date: Date.parse(
|
|
1564
|
-
max_date: Date.parse(
|
|
1569
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
1570
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
1565
1571
|
state: 56, # Integer | state of user
|
|
1566
|
-
period:
|
|
1572
|
+
period: 'period_example', # String | period to group logs
|
|
1567
1573
|
id_user: 56, # Integer | ID of a user
|
|
1568
1574
|
id_connection: 56, # Integer | ID of a connection
|
|
1569
|
-
|
|
1570
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
1571
|
-
expand:
|
|
1575
|
+
id_connector: 56, # Integer | ID of a connector
|
|
1576
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
1577
|
+
expand: 'expand_example' # String |
|
|
1572
1578
|
}
|
|
1573
1579
|
|
|
1574
1580
|
begin
|
|
@@ -1592,13 +1598,13 @@ Name | Type | Description | Notes
|
|
|
1592
1598
|
**period** | **String**| period to group logs | [optional]
|
|
1593
1599
|
**id_user** | **Integer**| ID of a user | [optional]
|
|
1594
1600
|
**id_connection** | **Integer**| ID of a connection | [optional]
|
|
1595
|
-
**
|
|
1596
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
1601
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
1602
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
1597
1603
|
**expand** | **String**| | [optional]
|
|
1598
1604
|
|
|
1599
1605
|
### Return type
|
|
1600
1606
|
|
|
1601
|
-
[**
|
|
1607
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
1602
1608
|
|
|
1603
1609
|
### Authorization
|
|
1604
1610
|
|
|
@@ -1612,7 +1618,7 @@ Name | Type | Description | Notes
|
|
|
1612
1618
|
|
|
1613
1619
|
|
|
1614
1620
|
# **providers_get**
|
|
1615
|
-
>
|
|
1621
|
+
> InlineResponse20017 providers_get(opts)
|
|
1616
1622
|
|
|
1617
1623
|
Get list of connectors
|
|
1618
1624
|
|
|
@@ -1633,7 +1639,7 @@ end
|
|
|
1633
1639
|
api_instance = BudgeaClient::BanksApi.new
|
|
1634
1640
|
|
|
1635
1641
|
opts = {
|
|
1636
|
-
expand:
|
|
1642
|
+
expand: 'expand_example' # String |
|
|
1637
1643
|
}
|
|
1638
1644
|
|
|
1639
1645
|
begin
|
|
@@ -1653,7 +1659,7 @@ Name | Type | Description | Notes
|
|
|
1653
1659
|
|
|
1654
1660
|
### Return type
|
|
1655
1661
|
|
|
1656
|
-
[**
|
|
1662
|
+
[**InlineResponse20017**](InlineResponse20017.md)
|
|
1657
1663
|
|
|
1658
1664
|
### Authorization
|
|
1659
1665
|
|
|
@@ -1666,12 +1672,12 @@ Name | Type | Description | Notes
|
|
|
1666
1672
|
|
|
1667
1673
|
|
|
1668
1674
|
|
|
1669
|
-
# **
|
|
1670
|
-
> InlineResponse2009
|
|
1675
|
+
# **providers_id_connector_connections_get**
|
|
1676
|
+
> InlineResponse2009 providers_id_connector_connections_get(id_connector, opts)
|
|
1671
1677
|
|
|
1672
|
-
Get
|
|
1678
|
+
Get a random subset of provider's id_connection
|
|
1673
1679
|
|
|
1674
|
-
|
|
1680
|
+
By default, it selects a set of 3 connections.<br><br>
|
|
1675
1681
|
|
|
1676
1682
|
### Example
|
|
1677
1683
|
```ruby
|
|
@@ -1687,18 +1693,19 @@ end
|
|
|
1687
1693
|
|
|
1688
1694
|
api_instance = BudgeaClient::BanksApi.new
|
|
1689
1695
|
|
|
1690
|
-
|
|
1696
|
+
id_connector = 56 # Integer |
|
|
1691
1697
|
|
|
1692
1698
|
opts = {
|
|
1693
|
-
|
|
1699
|
+
range: 56, # Integer | the length of the connection subset
|
|
1700
|
+
expand: 'expand_example' # String |
|
|
1694
1701
|
}
|
|
1695
1702
|
|
|
1696
1703
|
begin
|
|
1697
|
-
#Get
|
|
1698
|
-
result = api_instance.
|
|
1704
|
+
#Get a random subset of provider's id_connection
|
|
1705
|
+
result = api_instance.providers_id_connector_connections_get(id_connector, opts)
|
|
1699
1706
|
p result
|
|
1700
1707
|
rescue BudgeaClient::ApiError => e
|
|
1701
|
-
puts "Exception when calling BanksApi->
|
|
1708
|
+
puts "Exception when calling BanksApi->providers_id_connector_connections_get: #{e}"
|
|
1702
1709
|
end
|
|
1703
1710
|
```
|
|
1704
1711
|
|
|
@@ -1706,7 +1713,8 @@ end
|
|
|
1706
1713
|
|
|
1707
1714
|
Name | Type | Description | Notes
|
|
1708
1715
|
------------- | ------------- | ------------- | -------------
|
|
1709
|
-
**
|
|
1716
|
+
**id_connector** | **Integer**| |
|
|
1717
|
+
**range** | **Integer**| the length of the connection subset | [optional]
|
|
1710
1718
|
**expand** | **String**| | [optional]
|
|
1711
1719
|
|
|
1712
1720
|
### Return type
|
|
@@ -1724,12 +1732,12 @@ Name | Type | Description | Notes
|
|
|
1724
1732
|
|
|
1725
1733
|
|
|
1726
1734
|
|
|
1727
|
-
# **
|
|
1728
|
-
>
|
|
1735
|
+
# **providers_id_connector_logos_get**
|
|
1736
|
+
> InlineResponse20010 providers_id_connector_logos_get(id_connector, opts)
|
|
1729
1737
|
|
|
1730
|
-
Get all links to the files associated with this
|
|
1738
|
+
Get all links to the files associated with this connector.
|
|
1731
1739
|
|
|
1732
|
-
This endpoint returns all links to files associated with this
|
|
1740
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1733
1741
|
|
|
1734
1742
|
### Example
|
|
1735
1743
|
```ruby
|
|
@@ -1745,18 +1753,18 @@ end
|
|
|
1745
1753
|
|
|
1746
1754
|
api_instance = BudgeaClient::BanksApi.new
|
|
1747
1755
|
|
|
1748
|
-
|
|
1756
|
+
id_connector = 56 # Integer |
|
|
1749
1757
|
|
|
1750
1758
|
opts = {
|
|
1751
|
-
expand:
|
|
1759
|
+
expand: 'expand_example' # String |
|
|
1752
1760
|
}
|
|
1753
1761
|
|
|
1754
1762
|
begin
|
|
1755
|
-
#Get all links to the files associated with this
|
|
1756
|
-
result = api_instance.
|
|
1763
|
+
#Get all links to the files associated with this connector.
|
|
1764
|
+
result = api_instance.providers_id_connector_logos_get(id_connector, opts)
|
|
1757
1765
|
p result
|
|
1758
1766
|
rescue BudgeaClient::ApiError => e
|
|
1759
|
-
puts "Exception when calling BanksApi->
|
|
1767
|
+
puts "Exception when calling BanksApi->providers_id_connector_logos_get: #{e}"
|
|
1760
1768
|
end
|
|
1761
1769
|
```
|
|
1762
1770
|
|
|
@@ -1764,12 +1772,12 @@ end
|
|
|
1764
1772
|
|
|
1765
1773
|
Name | Type | Description | Notes
|
|
1766
1774
|
------------- | ------------- | ------------- | -------------
|
|
1767
|
-
**
|
|
1775
|
+
**id_connector** | **Integer**| |
|
|
1768
1776
|
**expand** | **String**| | [optional]
|
|
1769
1777
|
|
|
1770
1778
|
### Return type
|
|
1771
1779
|
|
|
1772
|
-
[**
|
|
1780
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1773
1781
|
|
|
1774
1782
|
### Authorization
|
|
1775
1783
|
|
|
@@ -1782,12 +1790,12 @@ Name | Type | Description | Notes
|
|
|
1782
1790
|
|
|
1783
1791
|
|
|
1784
1792
|
|
|
1785
|
-
# **
|
|
1786
|
-
>
|
|
1793
|
+
# **providers_id_connector_logos_main_get**
|
|
1794
|
+
> InlineResponse20010 providers_id_connector_logos_main_get(id_connector, opts)
|
|
1787
1795
|
|
|
1788
|
-
Get all links to the files associated with this
|
|
1796
|
+
Get all links to the files associated with this connector.
|
|
1789
1797
|
|
|
1790
|
-
This endpoint returns all links to files associated with this
|
|
1798
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1791
1799
|
|
|
1792
1800
|
### Example
|
|
1793
1801
|
```ruby
|
|
@@ -1803,18 +1811,18 @@ end
|
|
|
1803
1811
|
|
|
1804
1812
|
api_instance = BudgeaClient::BanksApi.new
|
|
1805
1813
|
|
|
1806
|
-
|
|
1814
|
+
id_connector = 56 # Integer |
|
|
1807
1815
|
|
|
1808
1816
|
opts = {
|
|
1809
|
-
expand:
|
|
1817
|
+
expand: 'expand_example' # String |
|
|
1810
1818
|
}
|
|
1811
1819
|
|
|
1812
1820
|
begin
|
|
1813
|
-
#Get all links to the files associated with this
|
|
1814
|
-
result = api_instance.
|
|
1821
|
+
#Get all links to the files associated with this connector.
|
|
1822
|
+
result = api_instance.providers_id_connector_logos_main_get(id_connector, opts)
|
|
1815
1823
|
p result
|
|
1816
1824
|
rescue BudgeaClient::ApiError => e
|
|
1817
|
-
puts "Exception when calling BanksApi->
|
|
1825
|
+
puts "Exception when calling BanksApi->providers_id_connector_logos_main_get: #{e}"
|
|
1818
1826
|
end
|
|
1819
1827
|
```
|
|
1820
1828
|
|
|
@@ -1822,12 +1830,70 @@ end
|
|
|
1822
1830
|
|
|
1823
1831
|
Name | Type | Description | Notes
|
|
1824
1832
|
------------- | ------------- | ------------- | -------------
|
|
1825
|
-
**
|
|
1833
|
+
**id_connector** | **Integer**| |
|
|
1826
1834
|
**expand** | **String**| | [optional]
|
|
1827
1835
|
|
|
1828
1836
|
### Return type
|
|
1829
1837
|
|
|
1830
|
-
[**
|
|
1838
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1839
|
+
|
|
1840
|
+
### Authorization
|
|
1841
|
+
|
|
1842
|
+
[api_key](../README.md#api_key)
|
|
1843
|
+
|
|
1844
|
+
### HTTP request headers
|
|
1845
|
+
|
|
1846
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
1847
|
+
- **Accept**: application/json
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
# **providers_id_connector_logos_thumbnail_get**
|
|
1852
|
+
> InlineResponse20010 providers_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1853
|
+
|
|
1854
|
+
Get all links to the files associated with this connector.
|
|
1855
|
+
|
|
1856
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1857
|
+
|
|
1858
|
+
### Example
|
|
1859
|
+
```ruby
|
|
1860
|
+
# load the gem
|
|
1861
|
+
require 'budgea_client'
|
|
1862
|
+
# setup authorization
|
|
1863
|
+
BudgeaClient.configure do |config|
|
|
1864
|
+
# Configure API key authorization: api_key
|
|
1865
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
1866
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
1867
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
1868
|
+
end
|
|
1869
|
+
|
|
1870
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
1871
|
+
|
|
1872
|
+
id_connector = 56 # Integer |
|
|
1873
|
+
|
|
1874
|
+
opts = {
|
|
1875
|
+
expand: 'expand_example' # String |
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
begin
|
|
1879
|
+
#Get all links to the files associated with this connector.
|
|
1880
|
+
result = api_instance.providers_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1881
|
+
p result
|
|
1882
|
+
rescue BudgeaClient::ApiError => e
|
|
1883
|
+
puts "Exception when calling BanksApi->providers_id_connector_logos_thumbnail_get: #{e}"
|
|
1884
|
+
end
|
|
1885
|
+
```
|
|
1886
|
+
|
|
1887
|
+
### Parameters
|
|
1888
|
+
|
|
1889
|
+
Name | Type | Description | Notes
|
|
1890
|
+
------------- | ------------- | ------------- | -------------
|
|
1891
|
+
**id_connector** | **Integer**| |
|
|
1892
|
+
**expand** | **String**| | [optional]
|
|
1893
|
+
|
|
1894
|
+
### Return type
|
|
1895
|
+
|
|
1896
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1831
1897
|
|
|
1832
1898
|
### Authorization
|
|
1833
1899
|
|
|
@@ -1861,10 +1927,10 @@ end
|
|
|
1861
1927
|
|
|
1862
1928
|
api_instance = BudgeaClient::BanksApi.new
|
|
1863
1929
|
|
|
1864
|
-
id_user =
|
|
1930
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1865
1931
|
|
|
1866
1932
|
opts = {
|
|
1867
|
-
expand:
|
|
1933
|
+
expand: 'expand_example' # String |
|
|
1868
1934
|
}
|
|
1869
1935
|
|
|
1870
1936
|
begin
|
|
@@ -1919,12 +1985,12 @@ end
|
|
|
1919
1985
|
|
|
1920
1986
|
api_instance = BudgeaClient::BanksApi.new
|
|
1921
1987
|
|
|
1922
|
-
id_user =
|
|
1988
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1923
1989
|
|
|
1924
1990
|
id_account_type = 56 # Integer |
|
|
1925
1991
|
|
|
1926
1992
|
opts = {
|
|
1927
|
-
expand:
|
|
1993
|
+
expand: 'expand_example' # String |
|
|
1928
1994
|
}
|
|
1929
1995
|
|
|
1930
1996
|
begin
|
|
@@ -1980,10 +2046,10 @@ end
|
|
|
1980
2046
|
|
|
1981
2047
|
api_instance = BudgeaClient::BanksApi.new
|
|
1982
2048
|
|
|
1983
|
-
id_user =
|
|
2049
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1984
2050
|
|
|
1985
2051
|
opts = {
|
|
1986
|
-
expand:
|
|
2052
|
+
expand: 'expand_example' # String |
|
|
1987
2053
|
}
|
|
1988
2054
|
|
|
1989
2055
|
begin
|
|
@@ -2018,7 +2084,7 @@ Name | Type | Description | Notes
|
|
|
2018
2084
|
|
|
2019
2085
|
|
|
2020
2086
|
# **users_id_user_accounts_get**
|
|
2021
|
-
>
|
|
2087
|
+
> InlineResponse20020 users_id_user_accounts_get(id_user, opts)
|
|
2022
2088
|
|
|
2023
2089
|
Get accounts list.
|
|
2024
2090
|
|
|
@@ -2038,10 +2104,10 @@ end
|
|
|
2038
2104
|
|
|
2039
2105
|
api_instance = BudgeaClient::BanksApi.new
|
|
2040
2106
|
|
|
2041
|
-
id_user =
|
|
2107
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2042
2108
|
|
|
2043
2109
|
opts = {
|
|
2044
|
-
expand:
|
|
2110
|
+
expand: 'expand_example' # String |
|
|
2045
2111
|
}
|
|
2046
2112
|
|
|
2047
2113
|
begin
|
|
@@ -2062,7 +2128,7 @@ Name | Type | Description | Notes
|
|
|
2062
2128
|
|
|
2063
2129
|
### Return type
|
|
2064
2130
|
|
|
2065
|
-
[**
|
|
2131
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
2066
2132
|
|
|
2067
2133
|
### Authorization
|
|
2068
2134
|
|
|
@@ -2096,7 +2162,7 @@ end
|
|
|
2096
2162
|
|
|
2097
2163
|
api_instance = BudgeaClient::BanksApi.new
|
|
2098
2164
|
|
|
2099
|
-
id_user =
|
|
2165
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2100
2166
|
|
|
2101
2167
|
id_account = 56 # Integer |
|
|
2102
2168
|
|
|
@@ -2136,7 +2202,7 @@ nil (empty response body)
|
|
|
2136
2202
|
|
|
2137
2203
|
Delete an account.
|
|
2138
2204
|
|
|
2139
|
-
It deletes a specific account
|
|
2205
|
+
It deletes a specific account.<br><br>
|
|
2140
2206
|
|
|
2141
2207
|
### Example
|
|
2142
2208
|
```ruby
|
|
@@ -2152,12 +2218,12 @@ end
|
|
|
2152
2218
|
|
|
2153
2219
|
api_instance = BudgeaClient::BanksApi.new
|
|
2154
2220
|
|
|
2155
|
-
id_user =
|
|
2221
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2156
2222
|
|
|
2157
2223
|
id_account = 56 # Integer |
|
|
2158
2224
|
|
|
2159
2225
|
opts = {
|
|
2160
|
-
expand:
|
|
2226
|
+
expand: 'expand_example' # String |
|
|
2161
2227
|
}
|
|
2162
2228
|
|
|
2163
2229
|
begin
|
|
@@ -2213,14 +2279,14 @@ end
|
|
|
2213
2279
|
|
|
2214
2280
|
api_instance = BudgeaClient::BanksApi.new
|
|
2215
2281
|
|
|
2216
|
-
id_user =
|
|
2282
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2217
2283
|
|
|
2218
2284
|
id_account = 56 # Integer |
|
|
2219
2285
|
|
|
2220
2286
|
opts = {
|
|
2221
|
-
min_date: Date.parse(
|
|
2222
|
-
max_date: Date.parse(
|
|
2223
|
-
period:
|
|
2287
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
2288
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
2289
|
+
period: 'period_example' # String | period to group logs
|
|
2224
2290
|
}
|
|
2225
2291
|
|
|
2226
2292
|
begin
|
|
@@ -2257,7 +2323,7 @@ nil (empty response body)
|
|
|
2257
2323
|
|
|
2258
2324
|
|
|
2259
2325
|
# **users_id_user_accounts_id_account_logs_get**
|
|
2260
|
-
>
|
|
2326
|
+
> InlineResponse20023 users_id_user_accounts_id_account_logs_get(id_user, id_account, opts)
|
|
2261
2327
|
|
|
2262
2328
|
Get accounts logs.
|
|
2263
2329
|
|
|
@@ -2277,16 +2343,16 @@ end
|
|
|
2277
2343
|
|
|
2278
2344
|
api_instance = BudgeaClient::BanksApi.new
|
|
2279
2345
|
|
|
2280
|
-
id_user =
|
|
2346
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2281
2347
|
|
|
2282
2348
|
id_account = 56 # Integer |
|
|
2283
2349
|
|
|
2284
2350
|
opts = {
|
|
2285
2351
|
limit: 56, # Integer | limit number of results
|
|
2286
2352
|
offset: 56, # Integer | offset of first result
|
|
2287
|
-
min_date: Date.parse(
|
|
2288
|
-
max_date: Date.parse(
|
|
2289
|
-
expand:
|
|
2353
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
2354
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
2355
|
+
expand: 'expand_example' # String |
|
|
2290
2356
|
}
|
|
2291
2357
|
|
|
2292
2358
|
begin
|
|
@@ -2312,7 +2378,7 @@ Name | Type | Description | Notes
|
|
|
2312
2378
|
|
|
2313
2379
|
### Return type
|
|
2314
2380
|
|
|
2315
|
-
[**
|
|
2381
|
+
[**InlineResponse20023**](InlineResponse20023.md)
|
|
2316
2382
|
|
|
2317
2383
|
### Authorization
|
|
2318
2384
|
|
|
@@ -2346,18 +2412,19 @@ end
|
|
|
2346
2412
|
|
|
2347
2413
|
api_instance = BudgeaClient::BanksApi.new
|
|
2348
2414
|
|
|
2349
|
-
id_user =
|
|
2415
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2350
2416
|
|
|
2351
2417
|
id_account = 56 # Integer |
|
|
2352
2418
|
|
|
2353
2419
|
opts = {
|
|
2354
2420
|
display: true, # BOOLEAN | If the account is displayed
|
|
2355
|
-
name:
|
|
2421
|
+
name: 'name_example', # String | Label of the account
|
|
2356
2422
|
balance: 3.4, # Float | Balance of the account
|
|
2357
2423
|
disabled: true, # BOOLEAN | If the account is disabled (not synchronized)
|
|
2358
|
-
iban:
|
|
2424
|
+
iban: 'iban_example', # String | IBAN of the account
|
|
2359
2425
|
bookmarked: true, # BOOLEAN | If the account is bookmarked
|
|
2360
|
-
|
|
2426
|
+
usage: 'usage_example', # String | Usage of the account : PRIV, ORGA or ASSO
|
|
2427
|
+
expand: 'expand_example' # String |
|
|
2361
2428
|
}
|
|
2362
2429
|
|
|
2363
2430
|
begin
|
|
@@ -2381,6 +2448,7 @@ Name | Type | Description | Notes
|
|
|
2381
2448
|
**disabled** | **BOOLEAN**| If the account is disabled (not synchronized) | [optional]
|
|
2382
2449
|
**iban** | **String**| IBAN of the account | [optional]
|
|
2383
2450
|
**bookmarked** | **BOOLEAN**| If the account is bookmarked | [optional]
|
|
2451
|
+
**usage** | **String**| Usage of the account : PRIV, ORGA or ASSO | [optional]
|
|
2384
2452
|
**expand** | **String**| | [optional]
|
|
2385
2453
|
|
|
2386
2454
|
### Return type
|
|
@@ -2419,12 +2487,12 @@ end
|
|
|
2419
2487
|
|
|
2420
2488
|
api_instance = BudgeaClient::BanksApi.new
|
|
2421
2489
|
|
|
2422
|
-
id_user =
|
|
2490
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2423
2491
|
|
|
2424
2492
|
id_account = 56 # Integer |
|
|
2425
2493
|
|
|
2426
2494
|
opts = {
|
|
2427
|
-
expand:
|
|
2495
|
+
expand: 'expand_example' # String |
|
|
2428
2496
|
}
|
|
2429
2497
|
|
|
2430
2498
|
begin
|
|
@@ -2460,7 +2528,7 @@ Name | Type | Description | Notes
|
|
|
2460
2528
|
|
|
2461
2529
|
|
|
2462
2530
|
# **users_id_user_accounts_id_account_transactions_get**
|
|
2463
|
-
>
|
|
2531
|
+
> InlineResponse20027 users_id_user_accounts_id_account_transactions_get(id_user, id_account, opts)
|
|
2464
2532
|
|
|
2465
2533
|
Get transactions
|
|
2466
2534
|
|
|
@@ -2480,25 +2548,25 @@ end
|
|
|
2480
2548
|
|
|
2481
2549
|
api_instance = BudgeaClient::BanksApi.new
|
|
2482
2550
|
|
|
2483
|
-
id_user =
|
|
2551
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2484
2552
|
|
|
2485
2553
|
id_account = 56 # Integer |
|
|
2486
2554
|
|
|
2487
2555
|
opts = {
|
|
2488
2556
|
limit: 56, # Integer | limit number of results
|
|
2489
2557
|
offset: 56, # Integer | offset of first result
|
|
2490
|
-
min_date: Date.parse(
|
|
2491
|
-
max_date: Date.parse(
|
|
2558
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
2559
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
2492
2560
|
income: true, # BOOLEAN | filter on income or expenditures
|
|
2493
2561
|
deleted: true, # BOOLEAN | display only deleted transactions
|
|
2494
2562
|
all: true, # BOOLEAN | display all transactions, including deleted ones
|
|
2495
|
-
last_update: DateTime.parse(
|
|
2496
|
-
wording:
|
|
2563
|
+
last_update: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | get only transactions updated after the specified datetime
|
|
2564
|
+
wording: 'wording_example', # String | filter transactions containing the given string
|
|
2497
2565
|
min_value: 3.4, # Float | minimal (inclusive) value
|
|
2498
2566
|
max_value: 3.4, # Float | maximum (inclusive) value
|
|
2499
|
-
search:
|
|
2500
|
-
value:
|
|
2501
|
-
expand:
|
|
2567
|
+
search: 'search_example', # String | search in labels, dates, values and categories
|
|
2568
|
+
value: 'value_example', # String | \"XX|-XX\" or \"±XX\"
|
|
2569
|
+
expand: 'expand_example' # String |
|
|
2502
2570
|
}
|
|
2503
2571
|
|
|
2504
2572
|
begin
|
|
@@ -2533,7 +2601,7 @@ Name | Type | Description | Notes
|
|
|
2533
2601
|
|
|
2534
2602
|
### Return type
|
|
2535
2603
|
|
|
2536
|
-
[**
|
|
2604
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
|
2537
2605
|
|
|
2538
2606
|
### Authorization
|
|
2539
2607
|
|
|
@@ -2567,14 +2635,14 @@ end
|
|
|
2567
2635
|
|
|
2568
2636
|
api_instance = BudgeaClient::BanksApi.new
|
|
2569
2637
|
|
|
2570
|
-
id_user =
|
|
2638
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2571
2639
|
|
|
2572
2640
|
id_account = 56 # Integer |
|
|
2573
2641
|
|
|
2574
2642
|
id_transaction = 56 # Integer |
|
|
2575
2643
|
|
|
2576
2644
|
opts = {
|
|
2577
|
-
expand:
|
|
2645
|
+
expand: 'expand_example' # String |
|
|
2578
2646
|
}
|
|
2579
2647
|
|
|
2580
2648
|
begin
|
|
@@ -2611,7 +2679,7 @@ Name | Type | Description | Notes
|
|
|
2611
2679
|
|
|
2612
2680
|
|
|
2613
2681
|
# **users_id_user_accounts_id_account_transactions_id_transaction_informations_get**
|
|
2614
|
-
>
|
|
2682
|
+
> InlineResponse20029 users_id_user_accounts_id_account_transactions_id_transaction_informations_get(id_user, id_account, id_transaction, opts)
|
|
2615
2683
|
|
|
2616
2684
|
List all arbitrary key-value pairs on a transaction
|
|
2617
2685
|
|
|
@@ -2631,14 +2699,14 @@ end
|
|
|
2631
2699
|
|
|
2632
2700
|
api_instance = BudgeaClient::BanksApi.new
|
|
2633
2701
|
|
|
2634
|
-
id_user =
|
|
2702
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2635
2703
|
|
|
2636
2704
|
id_account = 56 # Integer |
|
|
2637
2705
|
|
|
2638
2706
|
id_transaction = 56 # Integer |
|
|
2639
2707
|
|
|
2640
2708
|
opts = {
|
|
2641
|
-
expand:
|
|
2709
|
+
expand: 'expand_example' # String |
|
|
2642
2710
|
}
|
|
2643
2711
|
|
|
2644
2712
|
begin
|
|
@@ -2661,7 +2729,7 @@ Name | Type | Description | Notes
|
|
|
2661
2729
|
|
|
2662
2730
|
### Return type
|
|
2663
2731
|
|
|
2664
|
-
[**
|
|
2732
|
+
[**InlineResponse20029**](InlineResponse20029.md)
|
|
2665
2733
|
|
|
2666
2734
|
### Authorization
|
|
2667
2735
|
|
|
@@ -2695,7 +2763,7 @@ end
|
|
|
2695
2763
|
|
|
2696
2764
|
api_instance = BudgeaClient::BanksApi.new
|
|
2697
2765
|
|
|
2698
|
-
id_user =
|
|
2766
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2699
2767
|
|
|
2700
2768
|
id_account = 56 # Integer |
|
|
2701
2769
|
|
|
@@ -2704,7 +2772,7 @@ id_transaction = 56 # Integer |
|
|
|
2704
2772
|
id_information = 56 # Integer |
|
|
2705
2773
|
|
|
2706
2774
|
opts = {
|
|
2707
|
-
expand:
|
|
2775
|
+
expand: 'expand_example' # String |
|
|
2708
2776
|
}
|
|
2709
2777
|
|
|
2710
2778
|
begin
|
|
@@ -2762,7 +2830,7 @@ end
|
|
|
2762
2830
|
|
|
2763
2831
|
api_instance = BudgeaClient::BanksApi.new
|
|
2764
2832
|
|
|
2765
|
-
id_user =
|
|
2833
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2766
2834
|
|
|
2767
2835
|
id_account = 56 # Integer |
|
|
2768
2836
|
|
|
@@ -2771,7 +2839,7 @@ id_transaction = 56 # Integer |
|
|
|
2771
2839
|
id_information = 56 # Integer |
|
|
2772
2840
|
|
|
2773
2841
|
opts = {
|
|
2774
|
-
expand:
|
|
2842
|
+
expand: 'expand_example' # String |
|
|
2775
2843
|
}
|
|
2776
2844
|
|
|
2777
2845
|
begin
|
|
@@ -2829,14 +2897,14 @@ end
|
|
|
2829
2897
|
|
|
2830
2898
|
api_instance = BudgeaClient::BanksApi.new
|
|
2831
2899
|
|
|
2832
|
-
id_user =
|
|
2900
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2833
2901
|
|
|
2834
2902
|
id_account = 56 # Integer |
|
|
2835
2903
|
|
|
2836
2904
|
id_transaction = 56 # Integer |
|
|
2837
2905
|
|
|
2838
2906
|
opts = {
|
|
2839
|
-
expand:
|
|
2907
|
+
expand: 'expand_example' # String |
|
|
2840
2908
|
}
|
|
2841
2909
|
|
|
2842
2910
|
begin
|
|
@@ -2893,19 +2961,19 @@ end
|
|
|
2893
2961
|
|
|
2894
2962
|
api_instance = BudgeaClient::BanksApi.new
|
|
2895
2963
|
|
|
2896
|
-
id_user =
|
|
2964
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2897
2965
|
|
|
2898
2966
|
id_account = 56 # Integer |
|
|
2899
2967
|
|
|
2900
2968
|
id_transaction = 56 # Integer |
|
|
2901
2969
|
|
|
2902
2970
|
opts = {
|
|
2903
|
-
wording:
|
|
2904
|
-
application_date: Date.parse(
|
|
2971
|
+
wording: 'wording_example', # String | user rewording of the transaction
|
|
2972
|
+
application_date: Date.parse('2013-10-20'), # Date | change application date of the transaction
|
|
2905
2973
|
id_category: 56, # Integer | ID of the associated category
|
|
2906
|
-
comment:
|
|
2974
|
+
comment: 'comment_example', # String | change comment
|
|
2907
2975
|
active: true, # BOOLEAN | if false, transaction isn't considered in analyzisis endpoints (like /balances)
|
|
2908
|
-
expand:
|
|
2976
|
+
expand: 'expand_example' # String |
|
|
2909
2977
|
}
|
|
2910
2978
|
|
|
2911
2979
|
begin
|
|
@@ -2967,25 +3035,25 @@ end
|
|
|
2967
3035
|
|
|
2968
3036
|
api_instance = BudgeaClient::BanksApi.new
|
|
2969
3037
|
|
|
2970
|
-
id_user =
|
|
3038
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2971
3039
|
|
|
2972
3040
|
id_account = 56 # Integer |
|
|
2973
3041
|
|
|
2974
|
-
original_wording =
|
|
3042
|
+
original_wording = 'original_wording_example' # String | label of the transaction
|
|
2975
3043
|
|
|
2976
3044
|
value = 56 # Integer | vallue of the transaction
|
|
2977
3045
|
|
|
2978
|
-
date = Date.parse(
|
|
3046
|
+
date = Date.parse('2013-10-20') # Date | date of the transaction
|
|
2979
3047
|
|
|
2980
3048
|
opts = {
|
|
2981
|
-
type:
|
|
2982
|
-
state:
|
|
2983
|
-
rdate: Date.parse(
|
|
3049
|
+
type: 'type_example', # String | type of the transaction (default: unknown)
|
|
3050
|
+
state: 'state_example', # String | nature of the transaction (default: new)
|
|
3051
|
+
rdate: Date.parse('2013-10-20'), # Date | realisation date of the transaction (default: value of date)
|
|
2984
3052
|
coming: true, # BOOLEAN | 1 if the transaction has already been debited (default: 0)
|
|
2985
3053
|
active: true, # BOOLEAN | 1 if the transaction should be taken into account by pfm services (default: 1)
|
|
2986
|
-
date_scraped: DateTime.parse(
|
|
3054
|
+
date_scraped: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | date on which the transaction has been found for the first time. YYYY-MM-DD HH:MM:SS(default: now)
|
|
2987
3055
|
id_account2: 56, # Integer | account of the transaction. If not supplied, it has to be given in the route
|
|
2988
|
-
expand:
|
|
3056
|
+
expand: 'expand_example' # String |
|
|
2989
3057
|
}
|
|
2990
3058
|
|
|
2991
3059
|
begin
|
|
@@ -3031,7 +3099,7 @@ Name | Type | Description | Notes
|
|
|
3031
3099
|
|
|
3032
3100
|
|
|
3033
3101
|
# **users_id_user_accounts_id_account_transactionsclusters_get**
|
|
3034
|
-
>
|
|
3102
|
+
> InlineResponse20030 users_id_user_accounts_id_account_transactionsclusters_get(id_user, id_account, opts)
|
|
3035
3103
|
|
|
3036
3104
|
Get clustered transactions
|
|
3037
3105
|
|
|
@@ -3051,12 +3119,12 @@ end
|
|
|
3051
3119
|
|
|
3052
3120
|
api_instance = BudgeaClient::BanksApi.new
|
|
3053
3121
|
|
|
3054
|
-
id_user =
|
|
3122
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3055
3123
|
|
|
3056
3124
|
id_account = 56 # Integer |
|
|
3057
3125
|
|
|
3058
3126
|
opts = {
|
|
3059
|
-
expand:
|
|
3127
|
+
expand: 'expand_example' # String |
|
|
3060
3128
|
}
|
|
3061
3129
|
|
|
3062
3130
|
begin
|
|
@@ -3078,7 +3146,7 @@ Name | Type | Description | Notes
|
|
|
3078
3146
|
|
|
3079
3147
|
### Return type
|
|
3080
3148
|
|
|
3081
|
-
[**
|
|
3149
|
+
[**InlineResponse20030**](InlineResponse20030.md)
|
|
3082
3150
|
|
|
3083
3151
|
### Authorization
|
|
3084
3152
|
|
|
@@ -3112,14 +3180,14 @@ end
|
|
|
3112
3180
|
|
|
3113
3181
|
api_instance = BudgeaClient::BanksApi.new
|
|
3114
3182
|
|
|
3115
|
-
id_user =
|
|
3183
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3116
3184
|
|
|
3117
3185
|
id_account = 56 # Integer |
|
|
3118
3186
|
|
|
3119
3187
|
id_transactionscluster = 56 # Integer |
|
|
3120
3188
|
|
|
3121
3189
|
opts = {
|
|
3122
|
-
expand:
|
|
3190
|
+
expand: 'expand_example' # String |
|
|
3123
3191
|
}
|
|
3124
3192
|
|
|
3125
3193
|
begin
|
|
@@ -3176,14 +3244,14 @@ end
|
|
|
3176
3244
|
|
|
3177
3245
|
api_instance = BudgeaClient::BanksApi.new
|
|
3178
3246
|
|
|
3179
|
-
id_user =
|
|
3247
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3180
3248
|
|
|
3181
3249
|
id_account = 56 # Integer |
|
|
3182
3250
|
|
|
3183
3251
|
id_transactionscluster = 56 # Integer |
|
|
3184
3252
|
|
|
3185
3253
|
opts = {
|
|
3186
|
-
expand:
|
|
3254
|
+
expand: 'expand_example' # String |
|
|
3187
3255
|
}
|
|
3188
3256
|
|
|
3189
3257
|
begin
|
|
@@ -3240,12 +3308,12 @@ end
|
|
|
3240
3308
|
|
|
3241
3309
|
api_instance = BudgeaClient::BanksApi.new
|
|
3242
3310
|
|
|
3243
|
-
id_user =
|
|
3311
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3244
3312
|
|
|
3245
3313
|
id_account = 56 # Integer |
|
|
3246
3314
|
|
|
3247
3315
|
opts = {
|
|
3248
|
-
expand:
|
|
3316
|
+
expand: 'expand_example' # String |
|
|
3249
3317
|
}
|
|
3250
3318
|
|
|
3251
3319
|
begin
|
|
@@ -3285,7 +3353,7 @@ Name | Type | Description | Notes
|
|
|
3285
3353
|
|
|
3286
3354
|
Create an account
|
|
3287
3355
|
|
|
3288
|
-
This endpoint creates an account
|
|
3356
|
+
This endpoint creates an account related to a connection or not.<br><br>
|
|
3289
3357
|
|
|
3290
3358
|
### Example
|
|
3291
3359
|
```ruby
|
|
@@ -3301,17 +3369,18 @@ end
|
|
|
3301
3369
|
|
|
3302
3370
|
api_instance = BudgeaClient::BanksApi.new
|
|
3303
3371
|
|
|
3304
|
-
id_user =
|
|
3372
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3305
3373
|
|
|
3306
|
-
name =
|
|
3374
|
+
name = 'name_example' # String | name of account
|
|
3307
3375
|
|
|
3308
3376
|
balance = 3.4 # Float | balance of account
|
|
3309
3377
|
|
|
3310
3378
|
opts = {
|
|
3311
|
-
number:
|
|
3312
|
-
iban:
|
|
3313
|
-
id_currency:
|
|
3314
|
-
|
|
3379
|
+
number: 'number_example', # String | number of account
|
|
3380
|
+
iban: 'iban_example', # String | IBAN of account
|
|
3381
|
+
id_currency: 'id_currency_example', # String | the currency of the account (default: 'EUR')
|
|
3382
|
+
id_connection: 56, # Integer | the connection to attach to the account
|
|
3383
|
+
expand: 'expand_example' # String |
|
|
3315
3384
|
}
|
|
3316
3385
|
|
|
3317
3386
|
begin
|
|
@@ -3333,6 +3402,65 @@ Name | Type | Description | Notes
|
|
|
3333
3402
|
**number** | **String**| number of account | [optional]
|
|
3334
3403
|
**iban** | **String**| IBAN of account | [optional]
|
|
3335
3404
|
**id_currency** | **String**| the currency of the account (default: 'EUR') | [optional]
|
|
3405
|
+
**id_connection** | **Integer**| the connection to attach to the account | [optional]
|
|
3406
|
+
**expand** | **String**| | [optional]
|
|
3407
|
+
|
|
3408
|
+
### Return type
|
|
3409
|
+
|
|
3410
|
+
[**Account**](Account.md)
|
|
3411
|
+
|
|
3412
|
+
### Authorization
|
|
3413
|
+
|
|
3414
|
+
[api_key](../README.md#api_key)
|
|
3415
|
+
|
|
3416
|
+
### HTTP request headers
|
|
3417
|
+
|
|
3418
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
3419
|
+
- **Accept**: application/json
|
|
3420
|
+
|
|
3421
|
+
|
|
3422
|
+
|
|
3423
|
+
# **users_id_user_accounts_put**
|
|
3424
|
+
> Account users_id_user_accounts_put(id_user, opts)
|
|
3425
|
+
|
|
3426
|
+
Update many accounts at once
|
|
3427
|
+
|
|
3428
|
+
|
|
3429
|
+
|
|
3430
|
+
### Example
|
|
3431
|
+
```ruby
|
|
3432
|
+
# load the gem
|
|
3433
|
+
require 'budgea_client'
|
|
3434
|
+
# setup authorization
|
|
3435
|
+
BudgeaClient.configure do |config|
|
|
3436
|
+
# Configure API key authorization: api_key
|
|
3437
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
3438
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
3439
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
3440
|
+
end
|
|
3441
|
+
|
|
3442
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
3443
|
+
|
|
3444
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3445
|
+
|
|
3446
|
+
opts = {
|
|
3447
|
+
expand: 'expand_example' # String |
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
begin
|
|
3451
|
+
#Update many accounts at once
|
|
3452
|
+
result = api_instance.users_id_user_accounts_put(id_user, opts)
|
|
3453
|
+
p result
|
|
3454
|
+
rescue BudgeaClient::ApiError => e
|
|
3455
|
+
puts "Exception when calling BanksApi->users_id_user_accounts_put: #{e}"
|
|
3456
|
+
end
|
|
3457
|
+
```
|
|
3458
|
+
|
|
3459
|
+
### Parameters
|
|
3460
|
+
|
|
3461
|
+
Name | Type | Description | Notes
|
|
3462
|
+
------------- | ------------- | ------------- | -------------
|
|
3463
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
3336
3464
|
**expand** | **String**| | [optional]
|
|
3337
3465
|
|
|
3338
3466
|
### Return type
|
|
@@ -3351,7 +3479,7 @@ Name | Type | Description | Notes
|
|
|
3351
3479
|
|
|
3352
3480
|
|
|
3353
3481
|
# **users_id_user_alerts_get**
|
|
3354
|
-
>
|
|
3482
|
+
> InlineResponse20031 users_id_user_alerts_get(id_user, opts)
|
|
3355
3483
|
|
|
3356
3484
|
Get alerts
|
|
3357
3485
|
|
|
@@ -3371,10 +3499,10 @@ end
|
|
|
3371
3499
|
|
|
3372
3500
|
api_instance = BudgeaClient::BanksApi.new
|
|
3373
3501
|
|
|
3374
|
-
id_user =
|
|
3502
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3375
3503
|
|
|
3376
3504
|
opts = {
|
|
3377
|
-
expand:
|
|
3505
|
+
expand: 'expand_example' # String |
|
|
3378
3506
|
}
|
|
3379
3507
|
|
|
3380
3508
|
begin
|
|
@@ -3395,7 +3523,7 @@ Name | Type | Description | Notes
|
|
|
3395
3523
|
|
|
3396
3524
|
### Return type
|
|
3397
3525
|
|
|
3398
|
-
[**
|
|
3526
|
+
[**InlineResponse20031**](InlineResponse20031.md)
|
|
3399
3527
|
|
|
3400
3528
|
### Authorization
|
|
3401
3529
|
|
|
@@ -3409,7 +3537,7 @@ Name | Type | Description | Notes
|
|
|
3409
3537
|
|
|
3410
3538
|
|
|
3411
3539
|
# **users_id_user_categories_full_get**
|
|
3412
|
-
>
|
|
3540
|
+
> InlineResponse20032 users_id_user_categories_full_get(id_user, opts)
|
|
3413
3541
|
|
|
3414
3542
|
Get the category
|
|
3415
3543
|
|
|
@@ -3429,10 +3557,10 @@ end
|
|
|
3429
3557
|
|
|
3430
3558
|
api_instance = BudgeaClient::BanksApi.new
|
|
3431
3559
|
|
|
3432
|
-
id_user =
|
|
3560
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3433
3561
|
|
|
3434
3562
|
opts = {
|
|
3435
|
-
expand:
|
|
3563
|
+
expand: 'expand_example' # String |
|
|
3436
3564
|
}
|
|
3437
3565
|
|
|
3438
3566
|
begin
|
|
@@ -3453,7 +3581,205 @@ Name | Type | Description | Notes
|
|
|
3453
3581
|
|
|
3454
3582
|
### Return type
|
|
3455
3583
|
|
|
3456
|
-
[**
|
|
3584
|
+
[**InlineResponse20032**](InlineResponse20032.md)
|
|
3585
|
+
|
|
3586
|
+
### Authorization
|
|
3587
|
+
|
|
3588
|
+
[api_key](../README.md#api_key)
|
|
3589
|
+
|
|
3590
|
+
### HTTP request headers
|
|
3591
|
+
|
|
3592
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
3593
|
+
- **Accept**: application/json
|
|
3594
|
+
|
|
3595
|
+
|
|
3596
|
+
|
|
3597
|
+
# **users_id_user_categories_full_id_full_delete**
|
|
3598
|
+
> Category users_id_user_categories_full_id_full_delete(id_user, id_full, opts)
|
|
3599
|
+
|
|
3600
|
+
Delete a user-created transaction category
|
|
3601
|
+
|
|
3602
|
+
|
|
3603
|
+
|
|
3604
|
+
### Example
|
|
3605
|
+
```ruby
|
|
3606
|
+
# load the gem
|
|
3607
|
+
require 'budgea_client'
|
|
3608
|
+
# setup authorization
|
|
3609
|
+
BudgeaClient.configure do |config|
|
|
3610
|
+
# Configure API key authorization: api_key
|
|
3611
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
3612
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
3613
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
3614
|
+
end
|
|
3615
|
+
|
|
3616
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
3617
|
+
|
|
3618
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3619
|
+
|
|
3620
|
+
id_full = 56 # Integer |
|
|
3621
|
+
|
|
3622
|
+
opts = {
|
|
3623
|
+
expand: 'expand_example' # String |
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
begin
|
|
3627
|
+
#Delete a user-created transaction category
|
|
3628
|
+
result = api_instance.users_id_user_categories_full_id_full_delete(id_user, id_full, opts)
|
|
3629
|
+
p result
|
|
3630
|
+
rescue BudgeaClient::ApiError => e
|
|
3631
|
+
puts "Exception when calling BanksApi->users_id_user_categories_full_id_full_delete: #{e}"
|
|
3632
|
+
end
|
|
3633
|
+
```
|
|
3634
|
+
|
|
3635
|
+
### Parameters
|
|
3636
|
+
|
|
3637
|
+
Name | Type | Description | Notes
|
|
3638
|
+
------------- | ------------- | ------------- | -------------
|
|
3639
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
3640
|
+
**id_full** | **Integer**| |
|
|
3641
|
+
**expand** | **String**| | [optional]
|
|
3642
|
+
|
|
3643
|
+
### Return type
|
|
3644
|
+
|
|
3645
|
+
[**Category**](Category.md)
|
|
3646
|
+
|
|
3647
|
+
### Authorization
|
|
3648
|
+
|
|
3649
|
+
[api_key](../README.md#api_key)
|
|
3650
|
+
|
|
3651
|
+
### HTTP request headers
|
|
3652
|
+
|
|
3653
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
3654
|
+
- **Accept**: application/json
|
|
3655
|
+
|
|
3656
|
+
|
|
3657
|
+
|
|
3658
|
+
# **users_id_user_categories_full_id_full_put**
|
|
3659
|
+
> Category users_id_user_categories_full_id_full_put(id_user, id_full, opts)
|
|
3660
|
+
|
|
3661
|
+
Modify a user-created category
|
|
3662
|
+
|
|
3663
|
+
|
|
3664
|
+
|
|
3665
|
+
### Example
|
|
3666
|
+
```ruby
|
|
3667
|
+
# load the gem
|
|
3668
|
+
require 'budgea_client'
|
|
3669
|
+
# setup authorization
|
|
3670
|
+
BudgeaClient.configure do |config|
|
|
3671
|
+
# Configure API key authorization: api_key
|
|
3672
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
3673
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
3674
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
3675
|
+
end
|
|
3676
|
+
|
|
3677
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
3678
|
+
|
|
3679
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3680
|
+
|
|
3681
|
+
id_full = 56 # Integer |
|
|
3682
|
+
|
|
3683
|
+
opts = {
|
|
3684
|
+
hide: 'hide_example', # String | Hide (but not delete) a category. Must be 0, 1 or toggle.
|
|
3685
|
+
accountant_account: 'accountant_account_example', # String | Accountant account number.
|
|
3686
|
+
expand: 'expand_example' # String |
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
begin
|
|
3690
|
+
#Modify a user-created category
|
|
3691
|
+
result = api_instance.users_id_user_categories_full_id_full_put(id_user, id_full, opts)
|
|
3692
|
+
p result
|
|
3693
|
+
rescue BudgeaClient::ApiError => e
|
|
3694
|
+
puts "Exception when calling BanksApi->users_id_user_categories_full_id_full_put: #{e}"
|
|
3695
|
+
end
|
|
3696
|
+
```
|
|
3697
|
+
|
|
3698
|
+
### Parameters
|
|
3699
|
+
|
|
3700
|
+
Name | Type | Description | Notes
|
|
3701
|
+
------------- | ------------- | ------------- | -------------
|
|
3702
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
3703
|
+
**id_full** | **Integer**| |
|
|
3704
|
+
**hide** | **String**| Hide (but not delete) a category. Must be 0, 1 or toggle. | [optional]
|
|
3705
|
+
**accountant_account** | **String**| Accountant account number. | [optional]
|
|
3706
|
+
**expand** | **String**| | [optional]
|
|
3707
|
+
|
|
3708
|
+
### Return type
|
|
3709
|
+
|
|
3710
|
+
[**Category**](Category.md)
|
|
3711
|
+
|
|
3712
|
+
### Authorization
|
|
3713
|
+
|
|
3714
|
+
[api_key](../README.md#api_key)
|
|
3715
|
+
|
|
3716
|
+
### HTTP request headers
|
|
3717
|
+
|
|
3718
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
3719
|
+
- **Accept**: application/json
|
|
3720
|
+
|
|
3721
|
+
|
|
3722
|
+
|
|
3723
|
+
# **users_id_user_categories_full_post**
|
|
3724
|
+
> Category users_id_user_categories_full_post(id_user, opts)
|
|
3725
|
+
|
|
3726
|
+
Create a new transaction category
|
|
3727
|
+
|
|
3728
|
+
|
|
3729
|
+
|
|
3730
|
+
### Example
|
|
3731
|
+
```ruby
|
|
3732
|
+
# load the gem
|
|
3733
|
+
require 'budgea_client'
|
|
3734
|
+
# setup authorization
|
|
3735
|
+
BudgeaClient.configure do |config|
|
|
3736
|
+
# Configure API key authorization: api_key
|
|
3737
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
3738
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
3739
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
3740
|
+
end
|
|
3741
|
+
|
|
3742
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
3743
|
+
|
|
3744
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3745
|
+
|
|
3746
|
+
opts = {
|
|
3747
|
+
name: 'name_example', # String | Name of the category.
|
|
3748
|
+
id_parent_category: 56, # Integer | ID of the parent category.
|
|
3749
|
+
id_parent_category_in_menu: 56, # Integer | ID of the parent category to be displayed.
|
|
3750
|
+
color: 'color_example', # String | Color of the category.
|
|
3751
|
+
income: true, # BOOLEAN | Is an income category. If null, this is both an income and an expense category.
|
|
3752
|
+
refundable: true, # BOOLEAN | This category accepts opposite sign of transactions.
|
|
3753
|
+
accountant_account: 'accountant_account_example', # String | Accountant account number.
|
|
3754
|
+
expand: 'expand_example' # String |
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
begin
|
|
3758
|
+
#Create a new transaction category
|
|
3759
|
+
result = api_instance.users_id_user_categories_full_post(id_user, opts)
|
|
3760
|
+
p result
|
|
3761
|
+
rescue BudgeaClient::ApiError => e
|
|
3762
|
+
puts "Exception when calling BanksApi->users_id_user_categories_full_post: #{e}"
|
|
3763
|
+
end
|
|
3764
|
+
```
|
|
3765
|
+
|
|
3766
|
+
### Parameters
|
|
3767
|
+
|
|
3768
|
+
Name | Type | Description | Notes
|
|
3769
|
+
------------- | ------------- | ------------- | -------------
|
|
3770
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
3771
|
+
**name** | **String**| Name of the category. | [optional]
|
|
3772
|
+
**id_parent_category** | **Integer**| ID of the parent category. | [optional]
|
|
3773
|
+
**id_parent_category_in_menu** | **Integer**| ID of the parent category to be displayed. | [optional]
|
|
3774
|
+
**color** | **String**| Color of the category. | [optional]
|
|
3775
|
+
**income** | **BOOLEAN**| Is an income category. If null, this is both an income and an expense category. | [optional]
|
|
3776
|
+
**refundable** | **BOOLEAN**| This category accepts opposite sign of transactions. | [optional]
|
|
3777
|
+
**accountant_account** | **String**| Accountant account number. | [optional]
|
|
3778
|
+
**expand** | **String**| | [optional]
|
|
3779
|
+
|
|
3780
|
+
### Return type
|
|
3781
|
+
|
|
3782
|
+
[**Category**](Category.md)
|
|
3457
3783
|
|
|
3458
3784
|
### Authorization
|
|
3459
3785
|
|
|
@@ -3487,7 +3813,7 @@ end
|
|
|
3487
3813
|
|
|
3488
3814
|
api_instance = BudgeaClient::BanksApi.new
|
|
3489
3815
|
|
|
3490
|
-
id_user =
|
|
3816
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3491
3817
|
|
|
3492
3818
|
|
|
3493
3819
|
begin
|
|
@@ -3540,10 +3866,10 @@ end
|
|
|
3540
3866
|
|
|
3541
3867
|
api_instance = BudgeaClient::BanksApi.new
|
|
3542
3868
|
|
|
3543
|
-
id_user =
|
|
3869
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3544
3870
|
|
|
3545
3871
|
opts = {
|
|
3546
|
-
expand:
|
|
3872
|
+
expand: 'expand_example' # String |
|
|
3547
3873
|
}
|
|
3548
3874
|
|
|
3549
3875
|
begin
|
|
@@ -3578,7 +3904,7 @@ Name | Type | Description | Notes
|
|
|
3578
3904
|
|
|
3579
3905
|
|
|
3580
3906
|
# **users_id_user_connections_get**
|
|
3581
|
-
>
|
|
3907
|
+
> InlineResponse2009 users_id_user_connections_get(id_user, opts)
|
|
3582
3908
|
|
|
3583
3909
|
Get connections
|
|
3584
3910
|
|
|
@@ -3598,10 +3924,10 @@ end
|
|
|
3598
3924
|
|
|
3599
3925
|
api_instance = BudgeaClient::BanksApi.new
|
|
3600
3926
|
|
|
3601
|
-
id_user =
|
|
3927
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3602
3928
|
|
|
3603
3929
|
opts = {
|
|
3604
|
-
expand:
|
|
3930
|
+
expand: 'expand_example' # String |
|
|
3605
3931
|
}
|
|
3606
3932
|
|
|
3607
3933
|
begin
|
|
@@ -3622,7 +3948,7 @@ Name | Type | Description | Notes
|
|
|
3622
3948
|
|
|
3623
3949
|
### Return type
|
|
3624
3950
|
|
|
3625
|
-
[**
|
|
3951
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
3626
3952
|
|
|
3627
3953
|
### Authorization
|
|
3628
3954
|
|
|
@@ -3656,12 +3982,12 @@ end
|
|
|
3656
3982
|
|
|
3657
3983
|
api_instance = BudgeaClient::BanksApi.new
|
|
3658
3984
|
|
|
3659
|
-
id_user =
|
|
3985
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3660
3986
|
|
|
3661
3987
|
id_connection = 56 # Integer |
|
|
3662
3988
|
|
|
3663
3989
|
opts = {
|
|
3664
|
-
expand:
|
|
3990
|
+
expand: 'expand_example' # String |
|
|
3665
3991
|
}
|
|
3666
3992
|
|
|
3667
3993
|
begin
|
|
@@ -3697,7 +4023,7 @@ Name | Type | Description | Notes
|
|
|
3697
4023
|
|
|
3698
4024
|
|
|
3699
4025
|
# **users_id_user_connections_id_connection_accounts_get**
|
|
3700
|
-
>
|
|
4026
|
+
> InlineResponse20020 users_id_user_connections_id_connection_accounts_get(id_user, id_connection, opts)
|
|
3701
4027
|
|
|
3702
4028
|
Get accounts list.
|
|
3703
4029
|
|
|
@@ -3717,12 +4043,12 @@ end
|
|
|
3717
4043
|
|
|
3718
4044
|
api_instance = BudgeaClient::BanksApi.new
|
|
3719
4045
|
|
|
3720
|
-
id_user =
|
|
4046
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3721
4047
|
|
|
3722
4048
|
id_connection = 56 # Integer |
|
|
3723
4049
|
|
|
3724
4050
|
opts = {
|
|
3725
|
-
expand:
|
|
4051
|
+
expand: 'expand_example' # String |
|
|
3726
4052
|
}
|
|
3727
4053
|
|
|
3728
4054
|
begin
|
|
@@ -3744,7 +4070,7 @@ Name | Type | Description | Notes
|
|
|
3744
4070
|
|
|
3745
4071
|
### Return type
|
|
3746
4072
|
|
|
3747
|
-
[**
|
|
4073
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
|
3748
4074
|
|
|
3749
4075
|
### Authorization
|
|
3750
4076
|
|
|
@@ -3778,7 +4104,7 @@ end
|
|
|
3778
4104
|
|
|
3779
4105
|
api_instance = BudgeaClient::BanksApi.new
|
|
3780
4106
|
|
|
3781
|
-
id_user =
|
|
4107
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3782
4108
|
|
|
3783
4109
|
id_connection = 56 # Integer |
|
|
3784
4110
|
|
|
@@ -3821,7 +4147,7 @@ nil (empty response body)
|
|
|
3821
4147
|
|
|
3822
4148
|
Delete an account.
|
|
3823
4149
|
|
|
3824
|
-
It deletes a specific account
|
|
4150
|
+
It deletes a specific account.<br><br>
|
|
3825
4151
|
|
|
3826
4152
|
### Example
|
|
3827
4153
|
```ruby
|
|
@@ -3837,14 +4163,14 @@ end
|
|
|
3837
4163
|
|
|
3838
4164
|
api_instance = BudgeaClient::BanksApi.new
|
|
3839
4165
|
|
|
3840
|
-
id_user =
|
|
4166
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3841
4167
|
|
|
3842
4168
|
id_connection = 56 # Integer |
|
|
3843
4169
|
|
|
3844
4170
|
id_account = 56 # Integer |
|
|
3845
4171
|
|
|
3846
4172
|
opts = {
|
|
3847
|
-
expand:
|
|
4173
|
+
expand: 'expand_example' # String |
|
|
3848
4174
|
}
|
|
3849
4175
|
|
|
3850
4176
|
begin
|
|
@@ -3901,16 +4227,16 @@ end
|
|
|
3901
4227
|
|
|
3902
4228
|
api_instance = BudgeaClient::BanksApi.new
|
|
3903
4229
|
|
|
3904
|
-
id_user =
|
|
4230
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3905
4231
|
|
|
3906
4232
|
id_connection = 56 # Integer |
|
|
3907
4233
|
|
|
3908
4234
|
id_account = 56 # Integer |
|
|
3909
4235
|
|
|
3910
4236
|
opts = {
|
|
3911
|
-
min_date: Date.parse(
|
|
3912
|
-
max_date: Date.parse(
|
|
3913
|
-
period:
|
|
4237
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
4238
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
4239
|
+
period: 'period_example' # String | period to group logs
|
|
3914
4240
|
}
|
|
3915
4241
|
|
|
3916
4242
|
begin
|
|
@@ -3948,7 +4274,7 @@ nil (empty response body)
|
|
|
3948
4274
|
|
|
3949
4275
|
|
|
3950
4276
|
# **users_id_user_connections_id_connection_accounts_id_account_logs_get**
|
|
3951
|
-
>
|
|
4277
|
+
> InlineResponse20023 users_id_user_connections_id_connection_accounts_id_account_logs_get(id_user, id_connection, id_account, opts)
|
|
3952
4278
|
|
|
3953
4279
|
Get accounts logs.
|
|
3954
4280
|
|
|
@@ -3968,7 +4294,7 @@ end
|
|
|
3968
4294
|
|
|
3969
4295
|
api_instance = BudgeaClient::BanksApi.new
|
|
3970
4296
|
|
|
3971
|
-
id_user =
|
|
4297
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3972
4298
|
|
|
3973
4299
|
id_connection = 56 # Integer |
|
|
3974
4300
|
|
|
@@ -3977,9 +4303,9 @@ id_account = 56 # Integer |
|
|
|
3977
4303
|
opts = {
|
|
3978
4304
|
limit: 56, # Integer | limit number of results
|
|
3979
4305
|
offset: 56, # Integer | offset of first result
|
|
3980
|
-
min_date: Date.parse(
|
|
3981
|
-
max_date: Date.parse(
|
|
3982
|
-
expand:
|
|
4306
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4307
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4308
|
+
expand: 'expand_example' # String |
|
|
3983
4309
|
}
|
|
3984
4310
|
|
|
3985
4311
|
begin
|
|
@@ -4006,7 +4332,7 @@ Name | Type | Description | Notes
|
|
|
4006
4332
|
|
|
4007
4333
|
### Return type
|
|
4008
4334
|
|
|
4009
|
-
[**
|
|
4335
|
+
[**InlineResponse20023**](InlineResponse20023.md)
|
|
4010
4336
|
|
|
4011
4337
|
### Authorization
|
|
4012
4338
|
|
|
@@ -4040,7 +4366,7 @@ end
|
|
|
4040
4366
|
|
|
4041
4367
|
api_instance = BudgeaClient::BanksApi.new
|
|
4042
4368
|
|
|
4043
|
-
id_user =
|
|
4369
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4044
4370
|
|
|
4045
4371
|
id_connection = 56 # Integer |
|
|
4046
4372
|
|
|
@@ -4048,12 +4374,13 @@ id_account = 56 # Integer |
|
|
|
4048
4374
|
|
|
4049
4375
|
opts = {
|
|
4050
4376
|
display: true, # BOOLEAN | If the account is displayed
|
|
4051
|
-
name:
|
|
4377
|
+
name: 'name_example', # String | Label of the account
|
|
4052
4378
|
balance: 3.4, # Float | Balance of the account
|
|
4053
4379
|
disabled: true, # BOOLEAN | If the account is disabled (not synchronized)
|
|
4054
|
-
iban:
|
|
4380
|
+
iban: 'iban_example', # String | IBAN of the account
|
|
4055
4381
|
bookmarked: true, # BOOLEAN | If the account is bookmarked
|
|
4056
|
-
|
|
4382
|
+
usage: 'usage_example', # String | Usage of the account : PRIV, ORGA or ASSO
|
|
4383
|
+
expand: 'expand_example' # String |
|
|
4057
4384
|
}
|
|
4058
4385
|
|
|
4059
4386
|
begin
|
|
@@ -4078,6 +4405,7 @@ Name | Type | Description | Notes
|
|
|
4078
4405
|
**disabled** | **BOOLEAN**| If the account is disabled (not synchronized) | [optional]
|
|
4079
4406
|
**iban** | **String**| IBAN of the account | [optional]
|
|
4080
4407
|
**bookmarked** | **BOOLEAN**| If the account is bookmarked | [optional]
|
|
4408
|
+
**usage** | **String**| Usage of the account : PRIV, ORGA or ASSO | [optional]
|
|
4081
4409
|
**expand** | **String**| | [optional]
|
|
4082
4410
|
|
|
4083
4411
|
### Return type
|
|
@@ -4116,14 +4444,14 @@ end
|
|
|
4116
4444
|
|
|
4117
4445
|
api_instance = BudgeaClient::BanksApi.new
|
|
4118
4446
|
|
|
4119
|
-
id_user =
|
|
4447
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4120
4448
|
|
|
4121
4449
|
id_connection = 56 # Integer |
|
|
4122
4450
|
|
|
4123
4451
|
id_account = 56 # Integer |
|
|
4124
4452
|
|
|
4125
4453
|
opts = {
|
|
4126
|
-
expand:
|
|
4454
|
+
expand: 'expand_example' # String |
|
|
4127
4455
|
}
|
|
4128
4456
|
|
|
4129
4457
|
begin
|
|
@@ -4160,7 +4488,7 @@ Name | Type | Description | Notes
|
|
|
4160
4488
|
|
|
4161
4489
|
|
|
4162
4490
|
# **users_id_user_connections_id_connection_accounts_id_account_transactions_get**
|
|
4163
|
-
>
|
|
4491
|
+
> InlineResponse20027 users_id_user_connections_id_connection_accounts_id_account_transactions_get(id_user, id_connection, id_account, opts)
|
|
4164
4492
|
|
|
4165
4493
|
Get transactions
|
|
4166
4494
|
|
|
@@ -4180,7 +4508,7 @@ end
|
|
|
4180
4508
|
|
|
4181
4509
|
api_instance = BudgeaClient::BanksApi.new
|
|
4182
4510
|
|
|
4183
|
-
id_user =
|
|
4511
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4184
4512
|
|
|
4185
4513
|
id_connection = 56 # Integer |
|
|
4186
4514
|
|
|
@@ -4189,18 +4517,18 @@ id_account = 56 # Integer |
|
|
|
4189
4517
|
opts = {
|
|
4190
4518
|
limit: 56, # Integer | limit number of results
|
|
4191
4519
|
offset: 56, # Integer | offset of first result
|
|
4192
|
-
min_date: Date.parse(
|
|
4193
|
-
max_date: Date.parse(
|
|
4520
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4521
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4194
4522
|
income: true, # BOOLEAN | filter on income or expenditures
|
|
4195
4523
|
deleted: true, # BOOLEAN | display only deleted transactions
|
|
4196
4524
|
all: true, # BOOLEAN | display all transactions, including deleted ones
|
|
4197
|
-
last_update: DateTime.parse(
|
|
4198
|
-
wording:
|
|
4525
|
+
last_update: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | get only transactions updated after the specified datetime
|
|
4526
|
+
wording: 'wording_example', # String | filter transactions containing the given string
|
|
4199
4527
|
min_value: 3.4, # Float | minimal (inclusive) value
|
|
4200
4528
|
max_value: 3.4, # Float | maximum (inclusive) value
|
|
4201
|
-
search:
|
|
4202
|
-
value:
|
|
4203
|
-
expand:
|
|
4529
|
+
search: 'search_example', # String | search in labels, dates, values and categories
|
|
4530
|
+
value: 'value_example', # String | \"XX|-XX\" or \"±XX\"
|
|
4531
|
+
expand: 'expand_example' # String |
|
|
4204
4532
|
}
|
|
4205
4533
|
|
|
4206
4534
|
begin
|
|
@@ -4236,7 +4564,7 @@ Name | Type | Description | Notes
|
|
|
4236
4564
|
|
|
4237
4565
|
### Return type
|
|
4238
4566
|
|
|
4239
|
-
[**
|
|
4567
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
|
4240
4568
|
|
|
4241
4569
|
### Authorization
|
|
4242
4570
|
|
|
@@ -4270,7 +4598,7 @@ end
|
|
|
4270
4598
|
|
|
4271
4599
|
api_instance = BudgeaClient::BanksApi.new
|
|
4272
4600
|
|
|
4273
|
-
id_user =
|
|
4601
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4274
4602
|
|
|
4275
4603
|
id_connection = 56 # Integer |
|
|
4276
4604
|
|
|
@@ -4279,7 +4607,7 @@ id_account = 56 # Integer |
|
|
|
4279
4607
|
id_transaction = 56 # Integer |
|
|
4280
4608
|
|
|
4281
4609
|
opts = {
|
|
4282
|
-
expand:
|
|
4610
|
+
expand: 'expand_example' # String |
|
|
4283
4611
|
}
|
|
4284
4612
|
|
|
4285
4613
|
begin
|
|
@@ -4317,7 +4645,7 @@ Name | Type | Description | Notes
|
|
|
4317
4645
|
|
|
4318
4646
|
|
|
4319
4647
|
# **users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_informations_get**
|
|
4320
|
-
>
|
|
4648
|
+
> InlineResponse20029 users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_informations_get(id_user, id_connection, id_account, id_transaction, opts)
|
|
4321
4649
|
|
|
4322
4650
|
List all arbitrary key-value pairs on a transaction
|
|
4323
4651
|
|
|
@@ -4337,7 +4665,7 @@ end
|
|
|
4337
4665
|
|
|
4338
4666
|
api_instance = BudgeaClient::BanksApi.new
|
|
4339
4667
|
|
|
4340
|
-
id_user =
|
|
4668
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4341
4669
|
|
|
4342
4670
|
id_connection = 56 # Integer |
|
|
4343
4671
|
|
|
@@ -4346,7 +4674,7 @@ id_account = 56 # Integer |
|
|
|
4346
4674
|
id_transaction = 56 # Integer |
|
|
4347
4675
|
|
|
4348
4676
|
opts = {
|
|
4349
|
-
expand:
|
|
4677
|
+
expand: 'expand_example' # String |
|
|
4350
4678
|
}
|
|
4351
4679
|
|
|
4352
4680
|
begin
|
|
@@ -4370,7 +4698,7 @@ Name | Type | Description | Notes
|
|
|
4370
4698
|
|
|
4371
4699
|
### Return type
|
|
4372
4700
|
|
|
4373
|
-
[**
|
|
4701
|
+
[**InlineResponse20029**](InlineResponse20029.md)
|
|
4374
4702
|
|
|
4375
4703
|
### Authorization
|
|
4376
4704
|
|
|
@@ -4404,7 +4732,7 @@ end
|
|
|
4404
4732
|
|
|
4405
4733
|
api_instance = BudgeaClient::BanksApi.new
|
|
4406
4734
|
|
|
4407
|
-
id_user =
|
|
4735
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4408
4736
|
|
|
4409
4737
|
id_connection = 56 # Integer |
|
|
4410
4738
|
|
|
@@ -4415,7 +4743,7 @@ id_transaction = 56 # Integer |
|
|
|
4415
4743
|
id_information = 56 # Integer |
|
|
4416
4744
|
|
|
4417
4745
|
opts = {
|
|
4418
|
-
expand:
|
|
4746
|
+
expand: 'expand_example' # String |
|
|
4419
4747
|
}
|
|
4420
4748
|
|
|
4421
4749
|
begin
|
|
@@ -4474,7 +4802,7 @@ end
|
|
|
4474
4802
|
|
|
4475
4803
|
api_instance = BudgeaClient::BanksApi.new
|
|
4476
4804
|
|
|
4477
|
-
id_user =
|
|
4805
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4478
4806
|
|
|
4479
4807
|
id_connection = 56 # Integer |
|
|
4480
4808
|
|
|
@@ -4485,7 +4813,7 @@ id_transaction = 56 # Integer |
|
|
|
4485
4813
|
id_information = 56 # Integer |
|
|
4486
4814
|
|
|
4487
4815
|
opts = {
|
|
4488
|
-
expand:
|
|
4816
|
+
expand: 'expand_example' # String |
|
|
4489
4817
|
}
|
|
4490
4818
|
|
|
4491
4819
|
begin
|
|
@@ -4544,7 +4872,7 @@ end
|
|
|
4544
4872
|
|
|
4545
4873
|
api_instance = BudgeaClient::BanksApi.new
|
|
4546
4874
|
|
|
4547
|
-
id_user =
|
|
4875
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4548
4876
|
|
|
4549
4877
|
id_connection = 56 # Integer |
|
|
4550
4878
|
|
|
@@ -4553,7 +4881,7 @@ id_account = 56 # Integer |
|
|
|
4553
4881
|
id_transaction = 56 # Integer |
|
|
4554
4882
|
|
|
4555
4883
|
opts = {
|
|
4556
|
-
expand:
|
|
4884
|
+
expand: 'expand_example' # String |
|
|
4557
4885
|
}
|
|
4558
4886
|
|
|
4559
4887
|
begin
|
|
@@ -4611,7 +4939,7 @@ end
|
|
|
4611
4939
|
|
|
4612
4940
|
api_instance = BudgeaClient::BanksApi.new
|
|
4613
4941
|
|
|
4614
|
-
id_user =
|
|
4942
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4615
4943
|
|
|
4616
4944
|
id_connection = 56 # Integer |
|
|
4617
4945
|
|
|
@@ -4620,12 +4948,12 @@ id_account = 56 # Integer |
|
|
|
4620
4948
|
id_transaction = 56 # Integer |
|
|
4621
4949
|
|
|
4622
4950
|
opts = {
|
|
4623
|
-
wording:
|
|
4624
|
-
application_date: Date.parse(
|
|
4951
|
+
wording: 'wording_example', # String | user rewording of the transaction
|
|
4952
|
+
application_date: Date.parse('2013-10-20'), # Date | change application date of the transaction
|
|
4625
4953
|
id_category: 56, # Integer | ID of the associated category
|
|
4626
|
-
comment:
|
|
4954
|
+
comment: 'comment_example', # String | change comment
|
|
4627
4955
|
active: true, # BOOLEAN | if false, transaction isn't considered in analyzisis endpoints (like /balances)
|
|
4628
|
-
expand:
|
|
4956
|
+
expand: 'expand_example' # String |
|
|
4629
4957
|
}
|
|
4630
4958
|
|
|
4631
4959
|
begin
|
|
@@ -4688,27 +5016,27 @@ end
|
|
|
4688
5016
|
|
|
4689
5017
|
api_instance = BudgeaClient::BanksApi.new
|
|
4690
5018
|
|
|
4691
|
-
id_user =
|
|
5019
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4692
5020
|
|
|
4693
5021
|
id_connection = 56 # Integer |
|
|
4694
5022
|
|
|
4695
5023
|
id_account = 56 # Integer |
|
|
4696
5024
|
|
|
4697
|
-
original_wording =
|
|
5025
|
+
original_wording = 'original_wording_example' # String | label of the transaction
|
|
4698
5026
|
|
|
4699
5027
|
value = 56 # Integer | vallue of the transaction
|
|
4700
5028
|
|
|
4701
|
-
date = Date.parse(
|
|
5029
|
+
date = Date.parse('2013-10-20') # Date | date of the transaction
|
|
4702
5030
|
|
|
4703
5031
|
opts = {
|
|
4704
|
-
type:
|
|
4705
|
-
state:
|
|
4706
|
-
rdate: Date.parse(
|
|
5032
|
+
type: 'type_example', # String | type of the transaction (default: unknown)
|
|
5033
|
+
state: 'state_example', # String | nature of the transaction (default: new)
|
|
5034
|
+
rdate: Date.parse('2013-10-20'), # Date | realisation date of the transaction (default: value of date)
|
|
4707
5035
|
coming: true, # BOOLEAN | 1 if the transaction has already been debited (default: 0)
|
|
4708
5036
|
active: true, # BOOLEAN | 1 if the transaction should be taken into account by pfm services (default: 1)
|
|
4709
|
-
date_scraped: DateTime.parse(
|
|
5037
|
+
date_scraped: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | date on which the transaction has been found for the first time. YYYY-MM-DD HH:MM:SS(default: now)
|
|
4710
5038
|
id_account2: 56, # Integer | account of the transaction. If not supplied, it has to be given in the route
|
|
4711
|
-
expand:
|
|
5039
|
+
expand: 'expand_example' # String |
|
|
4712
5040
|
}
|
|
4713
5041
|
|
|
4714
5042
|
begin
|
|
@@ -4755,7 +5083,7 @@ Name | Type | Description | Notes
|
|
|
4755
5083
|
|
|
4756
5084
|
|
|
4757
5085
|
# **users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_get**
|
|
4758
|
-
>
|
|
5086
|
+
> InlineResponse20030 users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_get(id_user, id_connection, id_account, opts)
|
|
4759
5087
|
|
|
4760
5088
|
Get clustered transactions
|
|
4761
5089
|
|
|
@@ -4775,14 +5103,14 @@ end
|
|
|
4775
5103
|
|
|
4776
5104
|
api_instance = BudgeaClient::BanksApi.new
|
|
4777
5105
|
|
|
4778
|
-
id_user =
|
|
5106
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4779
5107
|
|
|
4780
5108
|
id_connection = 56 # Integer |
|
|
4781
5109
|
|
|
4782
5110
|
id_account = 56 # Integer |
|
|
4783
5111
|
|
|
4784
5112
|
opts = {
|
|
4785
|
-
expand:
|
|
5113
|
+
expand: 'expand_example' # String |
|
|
4786
5114
|
}
|
|
4787
5115
|
|
|
4788
5116
|
begin
|
|
@@ -4805,7 +5133,7 @@ Name | Type | Description | Notes
|
|
|
4805
5133
|
|
|
4806
5134
|
### Return type
|
|
4807
5135
|
|
|
4808
|
-
[**
|
|
5136
|
+
[**InlineResponse20030**](InlineResponse20030.md)
|
|
4809
5137
|
|
|
4810
5138
|
### Authorization
|
|
4811
5139
|
|
|
@@ -4839,7 +5167,7 @@ end
|
|
|
4839
5167
|
|
|
4840
5168
|
api_instance = BudgeaClient::BanksApi.new
|
|
4841
5169
|
|
|
4842
|
-
id_user =
|
|
5170
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4843
5171
|
|
|
4844
5172
|
id_connection = 56 # Integer |
|
|
4845
5173
|
|
|
@@ -4848,7 +5176,7 @@ id_account = 56 # Integer |
|
|
|
4848
5176
|
id_transactionscluster = 56 # Integer |
|
|
4849
5177
|
|
|
4850
5178
|
opts = {
|
|
4851
|
-
expand:
|
|
5179
|
+
expand: 'expand_example' # String |
|
|
4852
5180
|
}
|
|
4853
5181
|
|
|
4854
5182
|
begin
|
|
@@ -4906,7 +5234,7 @@ end
|
|
|
4906
5234
|
|
|
4907
5235
|
api_instance = BudgeaClient::BanksApi.new
|
|
4908
5236
|
|
|
4909
|
-
id_user =
|
|
5237
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4910
5238
|
|
|
4911
5239
|
id_connection = 56 # Integer |
|
|
4912
5240
|
|
|
@@ -4915,7 +5243,7 @@ id_account = 56 # Integer |
|
|
|
4915
5243
|
id_transactionscluster = 56 # Integer |
|
|
4916
5244
|
|
|
4917
5245
|
opts = {
|
|
4918
|
-
expand:
|
|
5246
|
+
expand: 'expand_example' # String |
|
|
4919
5247
|
}
|
|
4920
5248
|
|
|
4921
5249
|
begin
|
|
@@ -4973,14 +5301,14 @@ end
|
|
|
4973
5301
|
|
|
4974
5302
|
api_instance = BudgeaClient::BanksApi.new
|
|
4975
5303
|
|
|
4976
|
-
id_user =
|
|
5304
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4977
5305
|
|
|
4978
5306
|
id_connection = 56 # Integer |
|
|
4979
5307
|
|
|
4980
5308
|
id_account = 56 # Integer |
|
|
4981
5309
|
|
|
4982
5310
|
opts = {
|
|
4983
|
-
expand:
|
|
5311
|
+
expand: 'expand_example' # String |
|
|
4984
5312
|
}
|
|
4985
5313
|
|
|
4986
5314
|
begin
|
|
@@ -5021,7 +5349,7 @@ Name | Type | Description | Notes
|
|
|
5021
5349
|
|
|
5022
5350
|
Create an account
|
|
5023
5351
|
|
|
5024
|
-
This endpoint creates an account
|
|
5352
|
+
This endpoint creates an account related to a connection or not.<br><br>
|
|
5025
5353
|
|
|
5026
5354
|
### Example
|
|
5027
5355
|
```ruby
|
|
@@ -5037,19 +5365,20 @@ end
|
|
|
5037
5365
|
|
|
5038
5366
|
api_instance = BudgeaClient::BanksApi.new
|
|
5039
5367
|
|
|
5040
|
-
id_user =
|
|
5368
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5041
5369
|
|
|
5042
5370
|
id_connection = 56 # Integer |
|
|
5043
5371
|
|
|
5044
|
-
name =
|
|
5372
|
+
name = 'name_example' # String | name of account
|
|
5045
5373
|
|
|
5046
5374
|
balance = 3.4 # Float | balance of account
|
|
5047
5375
|
|
|
5048
5376
|
opts = {
|
|
5049
|
-
number:
|
|
5050
|
-
iban:
|
|
5051
|
-
id_currency:
|
|
5052
|
-
|
|
5377
|
+
number: 'number_example', # String | number of account
|
|
5378
|
+
iban: 'iban_example', # String | IBAN of account
|
|
5379
|
+
id_currency: 'id_currency_example', # String | the currency of the account (default: 'EUR')
|
|
5380
|
+
id_connection2: 56, # Integer | the connection to attach to the account
|
|
5381
|
+
expand: 'expand_example' # String |
|
|
5053
5382
|
}
|
|
5054
5383
|
|
|
5055
5384
|
begin
|
|
@@ -5072,6 +5401,68 @@ Name | Type | Description | Notes
|
|
|
5072
5401
|
**number** | **String**| number of account | [optional]
|
|
5073
5402
|
**iban** | **String**| IBAN of account | [optional]
|
|
5074
5403
|
**id_currency** | **String**| the currency of the account (default: 'EUR') | [optional]
|
|
5404
|
+
**id_connection2** | **Integer**| the connection to attach to the account | [optional]
|
|
5405
|
+
**expand** | **String**| | [optional]
|
|
5406
|
+
|
|
5407
|
+
### Return type
|
|
5408
|
+
|
|
5409
|
+
[**Account**](Account.md)
|
|
5410
|
+
|
|
5411
|
+
### Authorization
|
|
5412
|
+
|
|
5413
|
+
[api_key](../README.md#api_key)
|
|
5414
|
+
|
|
5415
|
+
### HTTP request headers
|
|
5416
|
+
|
|
5417
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
5418
|
+
- **Accept**: application/json
|
|
5419
|
+
|
|
5420
|
+
|
|
5421
|
+
|
|
5422
|
+
# **users_id_user_connections_id_connection_accounts_put**
|
|
5423
|
+
> Account users_id_user_connections_id_connection_accounts_put(id_user, id_connection, opts)
|
|
5424
|
+
|
|
5425
|
+
Update many accounts at once
|
|
5426
|
+
|
|
5427
|
+
|
|
5428
|
+
|
|
5429
|
+
### Example
|
|
5430
|
+
```ruby
|
|
5431
|
+
# load the gem
|
|
5432
|
+
require 'budgea_client'
|
|
5433
|
+
# setup authorization
|
|
5434
|
+
BudgeaClient.configure do |config|
|
|
5435
|
+
# Configure API key authorization: api_key
|
|
5436
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
5437
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
5438
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
5439
|
+
end
|
|
5440
|
+
|
|
5441
|
+
api_instance = BudgeaClient::BanksApi.new
|
|
5442
|
+
|
|
5443
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5444
|
+
|
|
5445
|
+
id_connection = 56 # Integer |
|
|
5446
|
+
|
|
5447
|
+
opts = {
|
|
5448
|
+
expand: 'expand_example' # String |
|
|
5449
|
+
}
|
|
5450
|
+
|
|
5451
|
+
begin
|
|
5452
|
+
#Update many accounts at once
|
|
5453
|
+
result = api_instance.users_id_user_connections_id_connection_accounts_put(id_user, id_connection, opts)
|
|
5454
|
+
p result
|
|
5455
|
+
rescue BudgeaClient::ApiError => e
|
|
5456
|
+
puts "Exception when calling BanksApi->users_id_user_connections_id_connection_accounts_put: #{e}"
|
|
5457
|
+
end
|
|
5458
|
+
```
|
|
5459
|
+
|
|
5460
|
+
### Parameters
|
|
5461
|
+
|
|
5462
|
+
Name | Type | Description | Notes
|
|
5463
|
+
------------- | ------------- | ------------- | -------------
|
|
5464
|
+
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
5465
|
+
**id_connection** | **Integer**| |
|
|
5075
5466
|
**expand** | **String**| | [optional]
|
|
5076
5467
|
|
|
5077
5468
|
### Return type
|
|
@@ -5084,7 +5475,7 @@ Name | Type | Description | Notes
|
|
|
5084
5475
|
|
|
5085
5476
|
### HTTP request headers
|
|
5086
5477
|
|
|
5087
|
-
- **Content-Type**: multipart/form-data
|
|
5478
|
+
- **Content-Type**: application/json, multipart/form-data
|
|
5088
5479
|
- **Accept**: application/json
|
|
5089
5480
|
|
|
5090
5481
|
|
|
@@ -5110,12 +5501,12 @@ end
|
|
|
5110
5501
|
|
|
5111
5502
|
api_instance = BudgeaClient::BanksApi.new
|
|
5112
5503
|
|
|
5113
|
-
id_user =
|
|
5504
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5114
5505
|
|
|
5115
5506
|
id_connection = 56 # Integer |
|
|
5116
5507
|
|
|
5117
5508
|
opts = {
|
|
5118
|
-
expand:
|
|
5509
|
+
expand: 'expand_example' # String |
|
|
5119
5510
|
}
|
|
5120
5511
|
|
|
5121
5512
|
begin
|
|
@@ -5151,7 +5542,7 @@ Name | Type | Description | Notes
|
|
|
5151
5542
|
|
|
5152
5543
|
|
|
5153
5544
|
# **users_id_user_connections_id_connection_informations_get**
|
|
5154
|
-
>
|
|
5545
|
+
> InlineResponse2009 users_id_user_connections_id_connection_informations_get(id_user, id_connection, opts)
|
|
5155
5546
|
|
|
5156
5547
|
Get connection additionnal informations
|
|
5157
5548
|
|
|
@@ -5171,12 +5562,12 @@ end
|
|
|
5171
5562
|
|
|
5172
5563
|
api_instance = BudgeaClient::BanksApi.new
|
|
5173
5564
|
|
|
5174
|
-
id_user =
|
|
5565
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5175
5566
|
|
|
5176
5567
|
id_connection = 56 # Integer |
|
|
5177
5568
|
|
|
5178
5569
|
opts = {
|
|
5179
|
-
expand:
|
|
5570
|
+
expand: 'expand_example' # String |
|
|
5180
5571
|
}
|
|
5181
5572
|
|
|
5182
5573
|
begin
|
|
@@ -5198,7 +5589,7 @@ Name | Type | Description | Notes
|
|
|
5198
5589
|
|
|
5199
5590
|
### Return type
|
|
5200
5591
|
|
|
5201
|
-
[**
|
|
5592
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
5202
5593
|
|
|
5203
5594
|
### Authorization
|
|
5204
5595
|
|
|
@@ -5212,7 +5603,7 @@ Name | Type | Description | Notes
|
|
|
5212
5603
|
|
|
5213
5604
|
|
|
5214
5605
|
# **users_id_user_connections_id_connection_logs_get**
|
|
5215
|
-
>
|
|
5606
|
+
> InlineResponse20016 users_id_user_connections_id_connection_logs_get(id_user, id_connection, opts)
|
|
5216
5607
|
|
|
5217
5608
|
Get connection logs
|
|
5218
5609
|
|
|
@@ -5232,22 +5623,22 @@ end
|
|
|
5232
5623
|
|
|
5233
5624
|
api_instance = BudgeaClient::BanksApi.new
|
|
5234
5625
|
|
|
5235
|
-
id_user =
|
|
5626
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5236
5627
|
|
|
5237
5628
|
id_connection = 56 # Integer |
|
|
5238
5629
|
|
|
5239
5630
|
opts = {
|
|
5240
5631
|
limit: 56, # Integer | limit number of results
|
|
5241
5632
|
offset: 56, # Integer | offset of first result
|
|
5242
|
-
min_date: Date.parse(
|
|
5243
|
-
max_date: Date.parse(
|
|
5633
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
5634
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
5244
5635
|
state: 56, # Integer | state of user
|
|
5245
|
-
period:
|
|
5636
|
+
period: 'period_example', # String | period to group logs
|
|
5246
5637
|
id_user2: 56, # Integer | ID of a user
|
|
5247
5638
|
id_connection2: 56, # Integer | ID of a connection
|
|
5248
|
-
|
|
5249
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
5250
|
-
expand:
|
|
5639
|
+
id_connector: 56, # Integer | ID of a connector
|
|
5640
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
5641
|
+
expand: 'expand_example' # String |
|
|
5251
5642
|
}
|
|
5252
5643
|
|
|
5253
5644
|
begin
|
|
@@ -5273,13 +5664,13 @@ Name | Type | Description | Notes
|
|
|
5273
5664
|
**period** | **String**| period to group logs | [optional]
|
|
5274
5665
|
**id_user2** | **Integer**| ID of a user | [optional]
|
|
5275
5666
|
**id_connection2** | **Integer**| ID of a connection | [optional]
|
|
5276
|
-
**
|
|
5277
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
5667
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
5668
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
5278
5669
|
**expand** | **String**| | [optional]
|
|
5279
5670
|
|
|
5280
5671
|
### Return type
|
|
5281
5672
|
|
|
5282
|
-
[**
|
|
5673
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
5283
5674
|
|
|
5284
5675
|
### Authorization
|
|
5285
5676
|
|
|
@@ -5313,16 +5704,16 @@ end
|
|
|
5313
5704
|
|
|
5314
5705
|
api_instance = BudgeaClient::BanksApi.new
|
|
5315
5706
|
|
|
5316
|
-
id_user =
|
|
5707
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5317
5708
|
|
|
5318
5709
|
id_connection = 56 # Integer |
|
|
5319
5710
|
|
|
5320
5711
|
opts = {
|
|
5321
5712
|
active: true, # BOOLEAN | Set if the connection synchronisation is active
|
|
5322
|
-
expire: DateTime.parse(
|
|
5323
|
-
login:
|
|
5324
|
-
password:
|
|
5325
|
-
expand:
|
|
5713
|
+
expire: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Set expiration of the connection to this date
|
|
5714
|
+
login: 'login_example', # String | Set login to this new login
|
|
5715
|
+
password: 'password_example', # String | Set password to this new password
|
|
5716
|
+
expand: 'expand_example' # String |
|
|
5326
5717
|
}
|
|
5327
5718
|
|
|
5328
5719
|
begin
|
|
@@ -5356,7 +5747,7 @@ Name | Type | Description | Notes
|
|
|
5356
5747
|
|
|
5357
5748
|
### HTTP request headers
|
|
5358
5749
|
|
|
5359
|
-
- **Content-Type**:
|
|
5750
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
5360
5751
|
- **Accept**: application/json
|
|
5361
5752
|
|
|
5362
5753
|
|
|
@@ -5382,12 +5773,12 @@ end
|
|
|
5382
5773
|
|
|
5383
5774
|
api_instance = BudgeaClient::BanksApi.new
|
|
5384
5775
|
|
|
5385
|
-
id_user =
|
|
5776
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5386
5777
|
|
|
5387
5778
|
id_connection = 56 # Integer |
|
|
5388
5779
|
|
|
5389
5780
|
opts = {
|
|
5390
|
-
expand:
|
|
5781
|
+
expand: 'expand_example' # String |
|
|
5391
5782
|
}
|
|
5392
5783
|
|
|
5393
5784
|
begin
|
|
@@ -5443,12 +5834,12 @@ end
|
|
|
5443
5834
|
|
|
5444
5835
|
api_instance = BudgeaClient::BanksApi.new
|
|
5445
5836
|
|
|
5446
|
-
id_user =
|
|
5837
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5447
5838
|
|
|
5448
5839
|
id_connection = 56 # Integer |
|
|
5449
5840
|
|
|
5450
5841
|
opts = {
|
|
5451
|
-
expand:
|
|
5842
|
+
expand: 'expand_example' # String |
|
|
5452
5843
|
}
|
|
5453
5844
|
|
|
5454
5845
|
begin
|
|
@@ -5484,7 +5875,7 @@ Name | Type | Description | Notes
|
|
|
5484
5875
|
|
|
5485
5876
|
|
|
5486
5877
|
# **users_id_user_connections_id_connection_transactions_get**
|
|
5487
|
-
>
|
|
5878
|
+
> InlineResponse20027 users_id_user_connections_id_connection_transactions_get(id_user, id_connection, opts)
|
|
5488
5879
|
|
|
5489
5880
|
Get transactions
|
|
5490
5881
|
|
|
@@ -5504,25 +5895,25 @@ end
|
|
|
5504
5895
|
|
|
5505
5896
|
api_instance = BudgeaClient::BanksApi.new
|
|
5506
5897
|
|
|
5507
|
-
id_user =
|
|
5898
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5508
5899
|
|
|
5509
5900
|
id_connection = 56 # Integer |
|
|
5510
5901
|
|
|
5511
5902
|
opts = {
|
|
5512
5903
|
limit: 56, # Integer | limit number of results
|
|
5513
5904
|
offset: 56, # Integer | offset of first result
|
|
5514
|
-
min_date: Date.parse(
|
|
5515
|
-
max_date: Date.parse(
|
|
5905
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
5906
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
5516
5907
|
income: true, # BOOLEAN | filter on income or expenditures
|
|
5517
5908
|
deleted: true, # BOOLEAN | display only deleted transactions
|
|
5518
5909
|
all: true, # BOOLEAN | display all transactions, including deleted ones
|
|
5519
|
-
last_update: DateTime.parse(
|
|
5520
|
-
wording:
|
|
5910
|
+
last_update: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | get only transactions updated after the specified datetime
|
|
5911
|
+
wording: 'wording_example', # String | filter transactions containing the given string
|
|
5521
5912
|
min_value: 3.4, # Float | minimal (inclusive) value
|
|
5522
5913
|
max_value: 3.4, # Float | maximum (inclusive) value
|
|
5523
|
-
search:
|
|
5524
|
-
value:
|
|
5525
|
-
expand:
|
|
5914
|
+
search: 'search_example', # String | search in labels, dates, values and categories
|
|
5915
|
+
value: 'value_example', # String | \"XX|-XX\" or \"±XX\"
|
|
5916
|
+
expand: 'expand_example' # String |
|
|
5526
5917
|
}
|
|
5527
5918
|
|
|
5528
5919
|
begin
|
|
@@ -5557,7 +5948,7 @@ Name | Type | Description | Notes
|
|
|
5557
5948
|
|
|
5558
5949
|
### Return type
|
|
5559
5950
|
|
|
5560
|
-
[**
|
|
5951
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
|
5561
5952
|
|
|
5562
5953
|
### Authorization
|
|
5563
5954
|
|
|
@@ -5591,14 +5982,14 @@ end
|
|
|
5591
5982
|
|
|
5592
5983
|
api_instance = BudgeaClient::BanksApi.new
|
|
5593
5984
|
|
|
5594
|
-
id_user =
|
|
5985
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5595
5986
|
|
|
5596
5987
|
id_connection = 56 # Integer |
|
|
5597
5988
|
|
|
5598
5989
|
id_transaction = 56 # Integer |
|
|
5599
5990
|
|
|
5600
5991
|
opts = {
|
|
5601
|
-
expand:
|
|
5992
|
+
expand: 'expand_example' # String |
|
|
5602
5993
|
}
|
|
5603
5994
|
|
|
5604
5995
|
begin
|
|
@@ -5635,7 +6026,7 @@ Name | Type | Description | Notes
|
|
|
5635
6026
|
|
|
5636
6027
|
|
|
5637
6028
|
# **users_id_user_connections_id_connection_transactions_id_transaction_informations_get**
|
|
5638
|
-
>
|
|
6029
|
+
> InlineResponse20029 users_id_user_connections_id_connection_transactions_id_transaction_informations_get(id_user, id_connection, id_transaction, opts)
|
|
5639
6030
|
|
|
5640
6031
|
List all arbitrary key-value pairs on a transaction
|
|
5641
6032
|
|
|
@@ -5655,14 +6046,14 @@ end
|
|
|
5655
6046
|
|
|
5656
6047
|
api_instance = BudgeaClient::BanksApi.new
|
|
5657
6048
|
|
|
5658
|
-
id_user =
|
|
6049
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5659
6050
|
|
|
5660
6051
|
id_connection = 56 # Integer |
|
|
5661
6052
|
|
|
5662
6053
|
id_transaction = 56 # Integer |
|
|
5663
6054
|
|
|
5664
6055
|
opts = {
|
|
5665
|
-
expand:
|
|
6056
|
+
expand: 'expand_example' # String |
|
|
5666
6057
|
}
|
|
5667
6058
|
|
|
5668
6059
|
begin
|
|
@@ -5685,7 +6076,7 @@ Name | Type | Description | Notes
|
|
|
5685
6076
|
|
|
5686
6077
|
### Return type
|
|
5687
6078
|
|
|
5688
|
-
[**
|
|
6079
|
+
[**InlineResponse20029**](InlineResponse20029.md)
|
|
5689
6080
|
|
|
5690
6081
|
### Authorization
|
|
5691
6082
|
|
|
@@ -5719,7 +6110,7 @@ end
|
|
|
5719
6110
|
|
|
5720
6111
|
api_instance = BudgeaClient::BanksApi.new
|
|
5721
6112
|
|
|
5722
|
-
id_user =
|
|
6113
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5723
6114
|
|
|
5724
6115
|
id_connection = 56 # Integer |
|
|
5725
6116
|
|
|
@@ -5728,7 +6119,7 @@ id_transaction = 56 # Integer |
|
|
|
5728
6119
|
id_information = 56 # Integer |
|
|
5729
6120
|
|
|
5730
6121
|
opts = {
|
|
5731
|
-
expand:
|
|
6122
|
+
expand: 'expand_example' # String |
|
|
5732
6123
|
}
|
|
5733
6124
|
|
|
5734
6125
|
begin
|
|
@@ -5786,7 +6177,7 @@ end
|
|
|
5786
6177
|
|
|
5787
6178
|
api_instance = BudgeaClient::BanksApi.new
|
|
5788
6179
|
|
|
5789
|
-
id_user =
|
|
6180
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5790
6181
|
|
|
5791
6182
|
id_connection = 56 # Integer |
|
|
5792
6183
|
|
|
@@ -5795,7 +6186,7 @@ id_transaction = 56 # Integer |
|
|
|
5795
6186
|
id_information = 56 # Integer |
|
|
5796
6187
|
|
|
5797
6188
|
opts = {
|
|
5798
|
-
expand:
|
|
6189
|
+
expand: 'expand_example' # String |
|
|
5799
6190
|
}
|
|
5800
6191
|
|
|
5801
6192
|
begin
|
|
@@ -5853,14 +6244,14 @@ end
|
|
|
5853
6244
|
|
|
5854
6245
|
api_instance = BudgeaClient::BanksApi.new
|
|
5855
6246
|
|
|
5856
|
-
id_user =
|
|
6247
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5857
6248
|
|
|
5858
6249
|
id_connection = 56 # Integer |
|
|
5859
6250
|
|
|
5860
6251
|
id_transaction = 56 # Integer |
|
|
5861
6252
|
|
|
5862
6253
|
opts = {
|
|
5863
|
-
expand:
|
|
6254
|
+
expand: 'expand_example' # String |
|
|
5864
6255
|
}
|
|
5865
6256
|
|
|
5866
6257
|
begin
|
|
@@ -5917,19 +6308,19 @@ end
|
|
|
5917
6308
|
|
|
5918
6309
|
api_instance = BudgeaClient::BanksApi.new
|
|
5919
6310
|
|
|
5920
|
-
id_user =
|
|
6311
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5921
6312
|
|
|
5922
6313
|
id_connection = 56 # Integer |
|
|
5923
6314
|
|
|
5924
6315
|
id_transaction = 56 # Integer |
|
|
5925
6316
|
|
|
5926
6317
|
opts = {
|
|
5927
|
-
wording:
|
|
5928
|
-
application_date: Date.parse(
|
|
6318
|
+
wording: 'wording_example', # String | user rewording of the transaction
|
|
6319
|
+
application_date: Date.parse('2013-10-20'), # Date | change application date of the transaction
|
|
5929
6320
|
id_category: 56, # Integer | ID of the associated category
|
|
5930
|
-
comment:
|
|
6321
|
+
comment: 'comment_example', # String | change comment
|
|
5931
6322
|
active: true, # BOOLEAN | if false, transaction isn't considered in analyzisis endpoints (like /balances)
|
|
5932
|
-
expand:
|
|
6323
|
+
expand: 'expand_example' # String |
|
|
5933
6324
|
}
|
|
5934
6325
|
|
|
5935
6326
|
begin
|
|
@@ -5991,25 +6382,25 @@ end
|
|
|
5991
6382
|
|
|
5992
6383
|
api_instance = BudgeaClient::BanksApi.new
|
|
5993
6384
|
|
|
5994
|
-
id_user =
|
|
6385
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5995
6386
|
|
|
5996
6387
|
id_connection = 56 # Integer |
|
|
5997
6388
|
|
|
5998
|
-
original_wording =
|
|
6389
|
+
original_wording = 'original_wording_example' # String | label of the transaction
|
|
5999
6390
|
|
|
6000
6391
|
value = 56 # Integer | vallue of the transaction
|
|
6001
6392
|
|
|
6002
|
-
date = Date.parse(
|
|
6393
|
+
date = Date.parse('2013-10-20') # Date | date of the transaction
|
|
6003
6394
|
|
|
6004
6395
|
opts = {
|
|
6005
|
-
type:
|
|
6006
|
-
state:
|
|
6007
|
-
rdate: Date.parse(
|
|
6396
|
+
type: 'type_example', # String | type of the transaction (default: unknown)
|
|
6397
|
+
state: 'state_example', # String | nature of the transaction (default: new)
|
|
6398
|
+
rdate: Date.parse('2013-10-20'), # Date | realisation date of the transaction (default: value of date)
|
|
6008
6399
|
coming: true, # BOOLEAN | 1 if the transaction has already been debited (default: 0)
|
|
6009
6400
|
active: true, # BOOLEAN | 1 if the transaction should be taken into account by pfm services (default: 1)
|
|
6010
|
-
date_scraped: DateTime.parse(
|
|
6401
|
+
date_scraped: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | date on which the transaction has been found for the first time. YYYY-MM-DD HH:MM:SS(default: now)
|
|
6011
6402
|
id_account: 56, # Integer | account of the transaction. If not supplied, it has to be given in the route
|
|
6012
|
-
expand:
|
|
6403
|
+
expand: 'expand_example' # String |
|
|
6013
6404
|
}
|
|
6014
6405
|
|
|
6015
6406
|
begin
|
|
@@ -6055,7 +6446,7 @@ Name | Type | Description | Notes
|
|
|
6055
6446
|
|
|
6056
6447
|
|
|
6057
6448
|
# **users_id_user_connections_id_connection_transactionsclusters_get**
|
|
6058
|
-
>
|
|
6449
|
+
> InlineResponse20030 users_id_user_connections_id_connection_transactionsclusters_get(id_user, id_connection, opts)
|
|
6059
6450
|
|
|
6060
6451
|
Get clustered transactions
|
|
6061
6452
|
|
|
@@ -6075,12 +6466,12 @@ end
|
|
|
6075
6466
|
|
|
6076
6467
|
api_instance = BudgeaClient::BanksApi.new
|
|
6077
6468
|
|
|
6078
|
-
id_user =
|
|
6469
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6079
6470
|
|
|
6080
6471
|
id_connection = 56 # Integer |
|
|
6081
6472
|
|
|
6082
6473
|
opts = {
|
|
6083
|
-
expand:
|
|
6474
|
+
expand: 'expand_example' # String |
|
|
6084
6475
|
}
|
|
6085
6476
|
|
|
6086
6477
|
begin
|
|
@@ -6102,7 +6493,7 @@ Name | Type | Description | Notes
|
|
|
6102
6493
|
|
|
6103
6494
|
### Return type
|
|
6104
6495
|
|
|
6105
|
-
[**
|
|
6496
|
+
[**InlineResponse20030**](InlineResponse20030.md)
|
|
6106
6497
|
|
|
6107
6498
|
### Authorization
|
|
6108
6499
|
|
|
@@ -6136,14 +6527,14 @@ end
|
|
|
6136
6527
|
|
|
6137
6528
|
api_instance = BudgeaClient::BanksApi.new
|
|
6138
6529
|
|
|
6139
|
-
id_user =
|
|
6530
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6140
6531
|
|
|
6141
6532
|
id_connection = 56 # Integer |
|
|
6142
6533
|
|
|
6143
6534
|
id_transactionscluster = 56 # Integer |
|
|
6144
6535
|
|
|
6145
6536
|
opts = {
|
|
6146
|
-
expand:
|
|
6537
|
+
expand: 'expand_example' # String |
|
|
6147
6538
|
}
|
|
6148
6539
|
|
|
6149
6540
|
begin
|
|
@@ -6200,14 +6591,14 @@ end
|
|
|
6200
6591
|
|
|
6201
6592
|
api_instance = BudgeaClient::BanksApi.new
|
|
6202
6593
|
|
|
6203
|
-
id_user =
|
|
6594
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6204
6595
|
|
|
6205
6596
|
id_connection = 56 # Integer |
|
|
6206
6597
|
|
|
6207
6598
|
id_transactionscluster = 56 # Integer |
|
|
6208
6599
|
|
|
6209
6600
|
opts = {
|
|
6210
|
-
expand:
|
|
6601
|
+
expand: 'expand_example' # String |
|
|
6211
6602
|
}
|
|
6212
6603
|
|
|
6213
6604
|
begin
|
|
@@ -6264,12 +6655,12 @@ end
|
|
|
6264
6655
|
|
|
6265
6656
|
api_instance = BudgeaClient::BanksApi.new
|
|
6266
6657
|
|
|
6267
|
-
id_user =
|
|
6658
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6268
6659
|
|
|
6269
6660
|
id_connection = 56 # Integer |
|
|
6270
6661
|
|
|
6271
6662
|
opts = {
|
|
6272
|
-
expand:
|
|
6663
|
+
expand: 'expand_example' # String |
|
|
6273
6664
|
}
|
|
6274
6665
|
|
|
6275
6666
|
begin
|
|
@@ -6325,24 +6716,23 @@ end
|
|
|
6325
6716
|
|
|
6326
6717
|
api_instance = BudgeaClient::BanksApi.new
|
|
6327
6718
|
|
|
6328
|
-
id_user =
|
|
6719
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6329
6720
|
|
|
6330
6721
|
opts = {
|
|
6331
|
-
|
|
6332
|
-
birthday:
|
|
6333
|
-
password:
|
|
6334
|
-
oauth_token:
|
|
6335
|
-
oauth_token_secret:
|
|
6336
|
-
auth_type:
|
|
6337
|
-
secret:
|
|
6338
|
-
type:
|
|
6339
|
-
birthdate:
|
|
6340
|
-
nuser:
|
|
6341
|
-
website:
|
|
6342
|
-
|
|
6343
|
-
login: "login_example", # String | bank additional login parameter
|
|
6722
|
+
id_connector: 56, # Integer | ID of the connector
|
|
6723
|
+
birthday: 'birthday_example', # String | bank additional login parameter
|
|
6724
|
+
password: 'password_example', # String | bank additional login parameter
|
|
6725
|
+
oauth_token: 'oauth_token_example', # String | bank additional login parameter
|
|
6726
|
+
oauth_token_secret: 'oauth_token_secret_example', # String | bank additional login parameter
|
|
6727
|
+
auth_type: 'auth_type_example', # String | bank additional login parameter
|
|
6728
|
+
secret: 'secret_example', # String | bank additional login parameter
|
|
6729
|
+
type: 'type_example', # String | bank additional login parameter
|
|
6730
|
+
birthdate: 'birthdate_example', # String | bank additional login parameter
|
|
6731
|
+
nuser: 'nuser_example', # String | bank additional login parameter
|
|
6732
|
+
website: 'website_example', # String | bank additional login parameter
|
|
6733
|
+
login: 'login_example', # String | bank additional login parameter
|
|
6344
6734
|
id_provider: 56, # Integer | ID of the provider
|
|
6345
|
-
expand:
|
|
6735
|
+
expand: 'expand_example' # String |
|
|
6346
6736
|
}
|
|
6347
6737
|
|
|
6348
6738
|
begin
|
|
@@ -6359,7 +6749,7 @@ end
|
|
|
6359
6749
|
Name | Type | Description | Notes
|
|
6360
6750
|
------------- | ------------- | ------------- | -------------
|
|
6361
6751
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
6362
|
-
**
|
|
6752
|
+
**id_connector** | **Integer**| ID of the connector | [optional]
|
|
6363
6753
|
**birthday** | **String**| bank additional login parameter | [optional]
|
|
6364
6754
|
**password** | **String**| bank additional login parameter | [optional]
|
|
6365
6755
|
**oauth_token** | **String**| bank additional login parameter | [optional]
|
|
@@ -6370,7 +6760,6 @@ Name | Type | Description | Notes
|
|
|
6370
6760
|
**birthdate** | **String**| bank additional login parameter | [optional]
|
|
6371
6761
|
**nuser** | **String**| bank additional login parameter | [optional]
|
|
6372
6762
|
**website** | **String**| bank additional login parameter | [optional]
|
|
6373
|
-
**password2** | **String**| bank additional login parameter | [optional]
|
|
6374
6763
|
**login** | **String**| bank additional login parameter | [optional]
|
|
6375
6764
|
**id_provider** | **Integer**| ID of the provider | [optional]
|
|
6376
6765
|
**expand** | **String**| | [optional]
|
|
@@ -6385,7 +6774,7 @@ Name | Type | Description | Notes
|
|
|
6385
6774
|
|
|
6386
6775
|
### HTTP request headers
|
|
6387
6776
|
|
|
6388
|
-
- **Content-Type**:
|
|
6777
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
6389
6778
|
- **Accept**: application/json
|
|
6390
6779
|
|
|
6391
6780
|
|
|
@@ -6411,7 +6800,7 @@ end
|
|
|
6411
6800
|
|
|
6412
6801
|
api_instance = BudgeaClient::BanksApi.new
|
|
6413
6802
|
|
|
6414
|
-
id_user =
|
|
6803
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6415
6804
|
|
|
6416
6805
|
|
|
6417
6806
|
begin
|
|
@@ -6444,7 +6833,7 @@ nil (empty response body)
|
|
|
6444
6833
|
|
|
6445
6834
|
|
|
6446
6835
|
# **users_id_user_logs_get**
|
|
6447
|
-
>
|
|
6836
|
+
> InlineResponse20016 users_id_user_logs_get(id_user, opts)
|
|
6448
6837
|
|
|
6449
6838
|
Get connection logs
|
|
6450
6839
|
|
|
@@ -6464,20 +6853,20 @@ end
|
|
|
6464
6853
|
|
|
6465
6854
|
api_instance = BudgeaClient::BanksApi.new
|
|
6466
6855
|
|
|
6467
|
-
id_user =
|
|
6856
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6468
6857
|
|
|
6469
6858
|
opts = {
|
|
6470
6859
|
limit: 56, # Integer | limit number of results
|
|
6471
6860
|
offset: 56, # Integer | offset of first result
|
|
6472
|
-
min_date: Date.parse(
|
|
6473
|
-
max_date: Date.parse(
|
|
6861
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
6862
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
6474
6863
|
state: 56, # Integer | state of user
|
|
6475
|
-
period:
|
|
6864
|
+
period: 'period_example', # String | period to group logs
|
|
6476
6865
|
id_user2: 56, # Integer | ID of a user
|
|
6477
6866
|
id_connection: 56, # Integer | ID of a connection
|
|
6478
|
-
|
|
6479
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
6480
|
-
expand:
|
|
6867
|
+
id_connector: 56, # Integer | ID of a connector
|
|
6868
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
6869
|
+
expand: 'expand_example' # String |
|
|
6481
6870
|
}
|
|
6482
6871
|
|
|
6483
6872
|
begin
|
|
@@ -6502,13 +6891,13 @@ Name | Type | Description | Notes
|
|
|
6502
6891
|
**period** | **String**| period to group logs | [optional]
|
|
6503
6892
|
**id_user2** | **Integer**| ID of a user | [optional]
|
|
6504
6893
|
**id_connection** | **Integer**| ID of a connection | [optional]
|
|
6505
|
-
**
|
|
6506
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
6894
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
6895
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
6507
6896
|
**expand** | **String**| | [optional]
|
|
6508
6897
|
|
|
6509
6898
|
### Return type
|
|
6510
6899
|
|
|
6511
|
-
[**
|
|
6900
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
6512
6901
|
|
|
6513
6902
|
### Authorization
|
|
6514
6903
|
|
|
@@ -6542,10 +6931,10 @@ end
|
|
|
6542
6931
|
|
|
6543
6932
|
api_instance = BudgeaClient::BanksApi.new
|
|
6544
6933
|
|
|
6545
|
-
id_user =
|
|
6934
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6546
6935
|
|
|
6547
6936
|
opts = {
|
|
6548
|
-
expand:
|
|
6937
|
+
expand: 'expand_example' # String |
|
|
6549
6938
|
}
|
|
6550
6939
|
|
|
6551
6940
|
begin
|
|
@@ -6580,7 +6969,7 @@ Name | Type | Description | Notes
|
|
|
6580
6969
|
|
|
6581
6970
|
|
|
6582
6971
|
# **users_id_user_transactions_get**
|
|
6583
|
-
>
|
|
6972
|
+
> InlineResponse20027 users_id_user_transactions_get(id_user, opts)
|
|
6584
6973
|
|
|
6585
6974
|
Get transactions
|
|
6586
6975
|
|
|
@@ -6600,23 +6989,23 @@ end
|
|
|
6600
6989
|
|
|
6601
6990
|
api_instance = BudgeaClient::BanksApi.new
|
|
6602
6991
|
|
|
6603
|
-
id_user =
|
|
6992
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6604
6993
|
|
|
6605
6994
|
opts = {
|
|
6606
6995
|
limit: 56, # Integer | limit number of results
|
|
6607
6996
|
offset: 56, # Integer | offset of first result
|
|
6608
|
-
min_date: Date.parse(
|
|
6609
|
-
max_date: Date.parse(
|
|
6997
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
6998
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
6610
6999
|
income: true, # BOOLEAN | filter on income or expenditures
|
|
6611
7000
|
deleted: true, # BOOLEAN | display only deleted transactions
|
|
6612
7001
|
all: true, # BOOLEAN | display all transactions, including deleted ones
|
|
6613
|
-
last_update: DateTime.parse(
|
|
6614
|
-
wording:
|
|
7002
|
+
last_update: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | get only transactions updated after the specified datetime
|
|
7003
|
+
wording: 'wording_example', # String | filter transactions containing the given string
|
|
6615
7004
|
min_value: 3.4, # Float | minimal (inclusive) value
|
|
6616
7005
|
max_value: 3.4, # Float | maximum (inclusive) value
|
|
6617
|
-
search:
|
|
6618
|
-
value:
|
|
6619
|
-
expand:
|
|
7006
|
+
search: 'search_example', # String | search in labels, dates, values and categories
|
|
7007
|
+
value: 'value_example', # String | \"XX|-XX\" or \"±XX\"
|
|
7008
|
+
expand: 'expand_example' # String |
|
|
6620
7009
|
}
|
|
6621
7010
|
|
|
6622
7011
|
begin
|
|
@@ -6650,7 +7039,7 @@ Name | Type | Description | Notes
|
|
|
6650
7039
|
|
|
6651
7040
|
### Return type
|
|
6652
7041
|
|
|
6653
|
-
[**
|
|
7042
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
|
6654
7043
|
|
|
6655
7044
|
### Authorization
|
|
6656
7045
|
|
|
@@ -6684,12 +7073,12 @@ end
|
|
|
6684
7073
|
|
|
6685
7074
|
api_instance = BudgeaClient::BanksApi.new
|
|
6686
7075
|
|
|
6687
|
-
id_user =
|
|
7076
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6688
7077
|
|
|
6689
7078
|
id_transaction = 56 # Integer |
|
|
6690
7079
|
|
|
6691
7080
|
opts = {
|
|
6692
|
-
expand:
|
|
7081
|
+
expand: 'expand_example' # String |
|
|
6693
7082
|
}
|
|
6694
7083
|
|
|
6695
7084
|
begin
|
|
@@ -6725,7 +7114,7 @@ Name | Type | Description | Notes
|
|
|
6725
7114
|
|
|
6726
7115
|
|
|
6727
7116
|
# **users_id_user_transactions_id_transaction_informations_get**
|
|
6728
|
-
>
|
|
7117
|
+
> InlineResponse20029 users_id_user_transactions_id_transaction_informations_get(id_user, id_transaction, opts)
|
|
6729
7118
|
|
|
6730
7119
|
List all arbitrary key-value pairs on a transaction
|
|
6731
7120
|
|
|
@@ -6745,12 +7134,12 @@ end
|
|
|
6745
7134
|
|
|
6746
7135
|
api_instance = BudgeaClient::BanksApi.new
|
|
6747
7136
|
|
|
6748
|
-
id_user =
|
|
7137
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6749
7138
|
|
|
6750
7139
|
id_transaction = 56 # Integer |
|
|
6751
7140
|
|
|
6752
7141
|
opts = {
|
|
6753
|
-
expand:
|
|
7142
|
+
expand: 'expand_example' # String |
|
|
6754
7143
|
}
|
|
6755
7144
|
|
|
6756
7145
|
begin
|
|
@@ -6772,7 +7161,7 @@ Name | Type | Description | Notes
|
|
|
6772
7161
|
|
|
6773
7162
|
### Return type
|
|
6774
7163
|
|
|
6775
|
-
[**
|
|
7164
|
+
[**InlineResponse20029**](InlineResponse20029.md)
|
|
6776
7165
|
|
|
6777
7166
|
### Authorization
|
|
6778
7167
|
|
|
@@ -6806,14 +7195,14 @@ end
|
|
|
6806
7195
|
|
|
6807
7196
|
api_instance = BudgeaClient::BanksApi.new
|
|
6808
7197
|
|
|
6809
|
-
id_user =
|
|
7198
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6810
7199
|
|
|
6811
7200
|
id_transaction = 56 # Integer |
|
|
6812
7201
|
|
|
6813
7202
|
id_information = 56 # Integer |
|
|
6814
7203
|
|
|
6815
7204
|
opts = {
|
|
6816
|
-
expand:
|
|
7205
|
+
expand: 'expand_example' # String |
|
|
6817
7206
|
}
|
|
6818
7207
|
|
|
6819
7208
|
begin
|
|
@@ -6870,14 +7259,14 @@ end
|
|
|
6870
7259
|
|
|
6871
7260
|
api_instance = BudgeaClient::BanksApi.new
|
|
6872
7261
|
|
|
6873
|
-
id_user =
|
|
7262
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6874
7263
|
|
|
6875
7264
|
id_transaction = 56 # Integer |
|
|
6876
7265
|
|
|
6877
7266
|
id_information = 56 # Integer |
|
|
6878
7267
|
|
|
6879
7268
|
opts = {
|
|
6880
|
-
expand:
|
|
7269
|
+
expand: 'expand_example' # String |
|
|
6881
7270
|
}
|
|
6882
7271
|
|
|
6883
7272
|
begin
|
|
@@ -6934,12 +7323,12 @@ end
|
|
|
6934
7323
|
|
|
6935
7324
|
api_instance = BudgeaClient::BanksApi.new
|
|
6936
7325
|
|
|
6937
|
-
id_user =
|
|
7326
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6938
7327
|
|
|
6939
7328
|
id_transaction = 56 # Integer |
|
|
6940
7329
|
|
|
6941
7330
|
opts = {
|
|
6942
|
-
expand:
|
|
7331
|
+
expand: 'expand_example' # String |
|
|
6943
7332
|
}
|
|
6944
7333
|
|
|
6945
7334
|
begin
|
|
@@ -6995,17 +7384,17 @@ end
|
|
|
6995
7384
|
|
|
6996
7385
|
api_instance = BudgeaClient::BanksApi.new
|
|
6997
7386
|
|
|
6998
|
-
id_user =
|
|
7387
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6999
7388
|
|
|
7000
7389
|
id_transaction = 56 # Integer |
|
|
7001
7390
|
|
|
7002
7391
|
opts = {
|
|
7003
|
-
wording:
|
|
7004
|
-
application_date: Date.parse(
|
|
7392
|
+
wording: 'wording_example', # String | user rewording of the transaction
|
|
7393
|
+
application_date: Date.parse('2013-10-20'), # Date | change application date of the transaction
|
|
7005
7394
|
id_category: 56, # Integer | ID of the associated category
|
|
7006
|
-
comment:
|
|
7395
|
+
comment: 'comment_example', # String | change comment
|
|
7007
7396
|
active: true, # BOOLEAN | if false, transaction isn't considered in analyzisis endpoints (like /balances)
|
|
7008
|
-
expand:
|
|
7397
|
+
expand: 'expand_example' # String |
|
|
7009
7398
|
}
|
|
7010
7399
|
|
|
7011
7400
|
begin
|
|
@@ -7040,7 +7429,7 @@ Name | Type | Description | Notes
|
|
|
7040
7429
|
|
|
7041
7430
|
### HTTP request headers
|
|
7042
7431
|
|
|
7043
|
-
- **Content-Type**:
|
|
7432
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
7044
7433
|
- **Accept**: application/json
|
|
7045
7434
|
|
|
7046
7435
|
|
|
@@ -7066,23 +7455,23 @@ end
|
|
|
7066
7455
|
|
|
7067
7456
|
api_instance = BudgeaClient::BanksApi.new
|
|
7068
7457
|
|
|
7069
|
-
id_user =
|
|
7458
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7070
7459
|
|
|
7071
|
-
original_wording =
|
|
7460
|
+
original_wording = 'original_wording_example' # String | label of the transaction
|
|
7072
7461
|
|
|
7073
7462
|
value = 56 # Integer | vallue of the transaction
|
|
7074
7463
|
|
|
7075
|
-
date = Date.parse(
|
|
7464
|
+
date = Date.parse('2013-10-20') # Date | date of the transaction
|
|
7076
7465
|
|
|
7077
7466
|
opts = {
|
|
7078
|
-
type:
|
|
7079
|
-
state:
|
|
7080
|
-
rdate: Date.parse(
|
|
7467
|
+
type: 'type_example', # String | type of the transaction (default: unknown)
|
|
7468
|
+
state: 'state_example', # String | nature of the transaction (default: new)
|
|
7469
|
+
rdate: Date.parse('2013-10-20'), # Date | realisation date of the transaction (default: value of date)
|
|
7081
7470
|
coming: true, # BOOLEAN | 1 if the transaction has already been debited (default: 0)
|
|
7082
7471
|
active: true, # BOOLEAN | 1 if the transaction should be taken into account by pfm services (default: 1)
|
|
7083
|
-
date_scraped: DateTime.parse(
|
|
7472
|
+
date_scraped: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | date on which the transaction has been found for the first time. YYYY-MM-DD HH:MM:SS(default: now)
|
|
7084
7473
|
id_account: 56, # Integer | account of the transaction. If not supplied, it has to be given in the route
|
|
7085
|
-
expand:
|
|
7474
|
+
expand: 'expand_example' # String |
|
|
7086
7475
|
}
|
|
7087
7476
|
|
|
7088
7477
|
begin
|
|
@@ -7121,13 +7510,13 @@ Name | Type | Description | Notes
|
|
|
7121
7510
|
|
|
7122
7511
|
### HTTP request headers
|
|
7123
7512
|
|
|
7124
|
-
- **Content-Type**:
|
|
7513
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
7125
7514
|
- **Accept**: application/json
|
|
7126
7515
|
|
|
7127
7516
|
|
|
7128
7517
|
|
|
7129
7518
|
# **users_id_user_transactionsclusters_get**
|
|
7130
|
-
>
|
|
7519
|
+
> InlineResponse20030 users_id_user_transactionsclusters_get(id_user, opts)
|
|
7131
7520
|
|
|
7132
7521
|
Get clustered transactions
|
|
7133
7522
|
|
|
@@ -7147,10 +7536,10 @@ end
|
|
|
7147
7536
|
|
|
7148
7537
|
api_instance = BudgeaClient::BanksApi.new
|
|
7149
7538
|
|
|
7150
|
-
id_user =
|
|
7539
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7151
7540
|
|
|
7152
7541
|
opts = {
|
|
7153
|
-
expand:
|
|
7542
|
+
expand: 'expand_example' # String |
|
|
7154
7543
|
}
|
|
7155
7544
|
|
|
7156
7545
|
begin
|
|
@@ -7171,7 +7560,7 @@ Name | Type | Description | Notes
|
|
|
7171
7560
|
|
|
7172
7561
|
### Return type
|
|
7173
7562
|
|
|
7174
|
-
[**
|
|
7563
|
+
[**InlineResponse20030**](InlineResponse20030.md)
|
|
7175
7564
|
|
|
7176
7565
|
### Authorization
|
|
7177
7566
|
|
|
@@ -7205,12 +7594,12 @@ end
|
|
|
7205
7594
|
|
|
7206
7595
|
api_instance = BudgeaClient::BanksApi.new
|
|
7207
7596
|
|
|
7208
|
-
id_user =
|
|
7597
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7209
7598
|
|
|
7210
7599
|
id_transactionscluster = 56 # Integer |
|
|
7211
7600
|
|
|
7212
7601
|
opts = {
|
|
7213
|
-
expand:
|
|
7602
|
+
expand: 'expand_example' # String |
|
|
7214
7603
|
}
|
|
7215
7604
|
|
|
7216
7605
|
begin
|
|
@@ -7266,12 +7655,12 @@ end
|
|
|
7266
7655
|
|
|
7267
7656
|
api_instance = BudgeaClient::BanksApi.new
|
|
7268
7657
|
|
|
7269
|
-
id_user =
|
|
7658
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7270
7659
|
|
|
7271
7660
|
id_transactionscluster = 56 # Integer |
|
|
7272
7661
|
|
|
7273
7662
|
opts = {
|
|
7274
|
-
expand:
|
|
7663
|
+
expand: 'expand_example' # String |
|
|
7275
7664
|
}
|
|
7276
7665
|
|
|
7277
7666
|
begin
|
|
@@ -7327,10 +7716,10 @@ end
|
|
|
7327
7716
|
|
|
7328
7717
|
api_instance = BudgeaClient::BanksApi.new
|
|
7329
7718
|
|
|
7330
|
-
id_user =
|
|
7719
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7331
7720
|
|
|
7332
7721
|
opts = {
|
|
7333
|
-
expand:
|
|
7722
|
+
expand: 'expand_example' # String |
|
|
7334
7723
|
}
|
|
7335
7724
|
|
|
7336
7725
|
begin
|