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/Recipient.md
CHANGED
|
@@ -17,6 +17,9 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**expire** | **DateTime** | | [optional]
|
|
18
18
|
**enabled_at** | **DateTime** | It will be possible to do transfers to this recipient at this date | [optional]
|
|
19
19
|
**add_verified** | **BOOLEAN** | Was the recipient adding authorized | [optional]
|
|
20
|
+
**state** | **String** | State of recipient | [optional]
|
|
21
|
+
**error** | **String** | Error message | [optional]
|
|
22
|
+
**fields** | **String** | Fields for recipient with additionalInformationNeeded state | [optional]
|
|
20
23
|
**currency** | **Object** | Currency of the object | [optional]
|
|
21
24
|
|
|
22
25
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# BudgeaClient::RecipientLog
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**id** | **Integer** | ID of the transfer log entry |
|
|
7
|
+
**id_recipient** | **Integer** | ID of the related recipient | [optional]
|
|
8
|
+
**id_file** | **Integer** | ID of the related file | [optional]
|
|
9
|
+
**request_data** | **String** | Data stored related to user who has requested the recipient addition | [optional]
|
|
10
|
+
**step** | **String** | Step of recipient addition, (add_recipient, asking_field, recipient addition validated, creation, storing_files) | [optional]
|
|
11
|
+
**error** | **String** | Error message during recipient addition, if any | [optional]
|
|
12
|
+
**timestamp** | **DateTime** | Timestamp of the log |
|
|
13
|
+
|
|
14
|
+
|
data/docs/RecipientsApi.md
CHANGED
|
@@ -15,7 +15,7 @@ Method | HTTP request | Description
|
|
|
15
15
|
|
|
16
16
|
Add a recipient.
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
19
19
|
|
|
20
20
|
### Example
|
|
21
21
|
```ruby
|
|
@@ -31,14 +31,15 @@ end
|
|
|
31
31
|
|
|
32
32
|
api_instance = BudgeaClient::RecipientsApi.new
|
|
33
33
|
|
|
34
|
-
id_user =
|
|
34
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
35
35
|
|
|
36
36
|
id_account = 56 # Integer |
|
|
37
37
|
|
|
38
38
|
opts = {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
40
|
+
label: 'label_example', # String | label of recipient
|
|
41
|
+
iban: 'iban_example', # String | iban of recipient
|
|
42
|
+
expand: 'expand_example' # String |
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
begin
|
|
@@ -56,6 +57,7 @@ Name | Type | Description | Notes
|
|
|
56
57
|
------------- | ------------- | ------------- | -------------
|
|
57
58
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
58
59
|
**id_account** | **Integer**| |
|
|
60
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
59
61
|
**label** | **String**| label of recipient | [optional]
|
|
60
62
|
**iban** | **String**| iban of recipient | [optional]
|
|
61
63
|
**expand** | **String**| | [optional]
|
|
@@ -80,7 +82,7 @@ Name | Type | Description | Notes
|
|
|
80
82
|
|
|
81
83
|
Add a recipient.
|
|
82
84
|
|
|
83
|
-
|
|
85
|
+
if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
84
86
|
|
|
85
87
|
### Example
|
|
86
88
|
```ruby
|
|
@@ -96,16 +98,17 @@ end
|
|
|
96
98
|
|
|
97
99
|
api_instance = BudgeaClient::RecipientsApi.new
|
|
98
100
|
|
|
99
|
-
id_user =
|
|
101
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
100
102
|
|
|
101
103
|
id_connection = 56 # Integer |
|
|
102
104
|
|
|
103
105
|
id_account = 56 # Integer |
|
|
104
106
|
|
|
105
107
|
opts = {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
109
|
+
label: 'label_example', # String | label of recipient
|
|
110
|
+
iban: 'iban_example', # String | iban of recipient
|
|
111
|
+
expand: 'expand_example' # String |
|
|
109
112
|
}
|
|
110
113
|
|
|
111
114
|
begin
|
|
@@ -124,6 +127,7 @@ Name | Type | Description | Notes
|
|
|
124
127
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
125
128
|
**id_connection** | **Integer**| |
|
|
126
129
|
**id_account** | **Integer**| |
|
|
130
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
127
131
|
**label** | **String**| label of recipient | [optional]
|
|
128
132
|
**iban** | **String**| iban of recipient | [optional]
|
|
129
133
|
**expand** | **String**| | [optional]
|
|
@@ -148,7 +152,7 @@ Name | Type | Description | Notes
|
|
|
148
152
|
|
|
149
153
|
Add a recipient.
|
|
150
154
|
|
|
151
|
-
|
|
155
|
+
if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
152
156
|
|
|
153
157
|
### Example
|
|
154
158
|
```ruby
|
|
@@ -164,14 +168,15 @@ end
|
|
|
164
168
|
|
|
165
169
|
api_instance = BudgeaClient::RecipientsApi.new
|
|
166
170
|
|
|
167
|
-
id_user =
|
|
171
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
168
172
|
|
|
169
173
|
id_connection = 56 # Integer |
|
|
170
174
|
|
|
171
175
|
opts = {
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
176
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
177
|
+
label: 'label_example', # String | label of recipient
|
|
178
|
+
iban: 'iban_example', # String | iban of recipient
|
|
179
|
+
expand: 'expand_example' # String |
|
|
175
180
|
}
|
|
176
181
|
|
|
177
182
|
begin
|
|
@@ -189,6 +194,7 @@ Name | Type | Description | Notes
|
|
|
189
194
|
------------- | ------------- | ------------- | -------------
|
|
190
195
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
191
196
|
**id_connection** | **Integer**| |
|
|
197
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
192
198
|
**label** | **String**| label of recipient | [optional]
|
|
193
199
|
**iban** | **String**| iban of recipient | [optional]
|
|
194
200
|
**expand** | **String**| | [optional]
|
|
@@ -213,7 +219,7 @@ Name | Type | Description | Notes
|
|
|
213
219
|
|
|
214
220
|
Add a recipient.
|
|
215
221
|
|
|
216
|
-
|
|
222
|
+
if config key transfer.recipient.iban_white_list.enabled is set to 1, recipients whose IBAN are not from countries codes contained in transfer.recipient.iban_white_list.entries will be deleted<br><br>
|
|
217
223
|
|
|
218
224
|
### Example
|
|
219
225
|
```ruby
|
|
@@ -229,12 +235,13 @@ end
|
|
|
229
235
|
|
|
230
236
|
api_instance = BudgeaClient::RecipientsApi.new
|
|
231
237
|
|
|
232
|
-
id_user =
|
|
238
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
233
239
|
|
|
234
240
|
opts = {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
241
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
242
|
+
label: 'label_example', # String | label of recipient
|
|
243
|
+
iban: 'iban_example', # String | iban of recipient
|
|
244
|
+
expand: 'expand_example' # String |
|
|
238
245
|
}
|
|
239
246
|
|
|
240
247
|
begin
|
|
@@ -251,6 +258,7 @@ end
|
|
|
251
258
|
Name | Type | Description | Notes
|
|
252
259
|
------------- | ------------- | ------------- | -------------
|
|
253
260
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
261
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
254
262
|
**label** | **String**| label of recipient | [optional]
|
|
255
263
|
**iban** | **String**| iban of recipient | [optional]
|
|
256
264
|
**expand** | **String**| | [optional]
|
data/docs/Subscription.md
CHANGED
|
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
|
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**id** | **Integer** | ID of subscription |
|
|
7
7
|
**id_connection** | **Integer** | ID of related connection | [optional]
|
|
8
|
-
**id_user** | **Integer** | ID of related user |
|
|
8
|
+
**id_user** | **Integer** | ID of related user | [optional]
|
|
9
9
|
**number** | **String** | Subscription's number |
|
|
10
10
|
**label** | **String** | Label of the subscription |
|
|
11
11
|
**subscriber** | **String** | Name of the subscriber | [optional]
|
|
@@ -14,5 +14,6 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**last_update** | **DateTime** | Last successful update of the subscription | [optional]
|
|
15
15
|
**deleted** | **DateTime** | This subscription is not found on the website anymore | [optional]
|
|
16
16
|
**disabled** | **DateTime** | This subscription has been deleted by user and will not be synchronized anymore | [optional]
|
|
17
|
+
**error** | **String** | If the last update has failed, the error code | [optional]
|
|
17
18
|
|
|
18
19
|
|
data/docs/TermsApi.md
CHANGED
|
@@ -11,7 +11,7 @@ Method | HTTP request | Description
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
# **terms_get**
|
|
14
|
-
>
|
|
14
|
+
> InlineResponse20018 terms_get(opts)
|
|
15
15
|
|
|
16
16
|
Return the current terms and the content of the associated file
|
|
17
17
|
|
|
@@ -32,7 +32,7 @@ end
|
|
|
32
32
|
api_instance = BudgeaClient::TermsApi.new
|
|
33
33
|
|
|
34
34
|
opts = {
|
|
35
|
-
expand:
|
|
35
|
+
expand: 'expand_example' # String |
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
begin
|
|
@@ -52,7 +52,7 @@ Name | Type | Description | Notes
|
|
|
52
52
|
|
|
53
53
|
### Return type
|
|
54
54
|
|
|
55
|
-
[**
|
|
55
|
+
[**InlineResponse20018**](InlineResponse20018.md)
|
|
56
56
|
|
|
57
57
|
### Authorization
|
|
58
58
|
|
|
@@ -87,9 +87,9 @@ end
|
|
|
87
87
|
api_instance = BudgeaClient::TermsApi.new
|
|
88
88
|
|
|
89
89
|
opts = {
|
|
90
|
-
version:
|
|
91
|
-
file_content:
|
|
92
|
-
expand:
|
|
90
|
+
version: 'version_example', # String | Number of version
|
|
91
|
+
file_content: 'file_content_example', # String | file containing the terms, optional
|
|
92
|
+
expand: 'expand_example' # String |
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
begin
|
|
@@ -125,7 +125,7 @@ Name | Type | Description | Notes
|
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
# **users_id_user_terms_get**
|
|
128
|
-
>
|
|
128
|
+
> InlineResponse20018 users_id_user_terms_get(id_user, opts)
|
|
129
129
|
|
|
130
130
|
Get active terms object for a specific user, only one terms can be active
|
|
131
131
|
|
|
@@ -145,10 +145,10 @@ end
|
|
|
145
145
|
|
|
146
146
|
api_instance = BudgeaClient::TermsApi.new
|
|
147
147
|
|
|
148
|
-
id_user =
|
|
148
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
149
149
|
|
|
150
150
|
opts = {
|
|
151
|
-
expand:
|
|
151
|
+
expand: 'expand_example' # String |
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
begin
|
|
@@ -169,7 +169,7 @@ Name | Type | Description | Notes
|
|
|
169
169
|
|
|
170
170
|
### Return type
|
|
171
171
|
|
|
172
|
-
[**
|
|
172
|
+
[**InlineResponse20018**](InlineResponse20018.md)
|
|
173
173
|
|
|
174
174
|
### Authorization
|
|
175
175
|
|
|
@@ -203,12 +203,11 @@ end
|
|
|
203
203
|
|
|
204
204
|
api_instance = BudgeaClient::TermsApi.new
|
|
205
205
|
|
|
206
|
-
id_user =
|
|
206
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
207
207
|
|
|
208
208
|
opts = {
|
|
209
|
-
id_user2: 56, # Integer | user id (optionnal)
|
|
210
209
|
id_terms: 56, # Integer | terms id
|
|
211
|
-
expand:
|
|
210
|
+
expand: 'expand_example' # String |
|
|
212
211
|
}
|
|
213
212
|
|
|
214
213
|
begin
|
|
@@ -225,7 +224,6 @@ end
|
|
|
225
224
|
Name | Type | Description | Notes
|
|
226
225
|
------------- | ------------- | ------------- | -------------
|
|
227
226
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
228
|
-
**id_user2** | **Integer**| user id (optionnal) | [optional]
|
|
229
227
|
**id_terms** | **Integer**| terms id | [optional]
|
|
230
228
|
**expand** | **String**| | [optional]
|
|
231
229
|
|
|
@@ -239,7 +237,7 @@ Name | Type | Description | Notes
|
|
|
239
237
|
|
|
240
238
|
### HTTP request headers
|
|
241
239
|
|
|
242
|
-
- **Content-Type**:
|
|
240
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
243
241
|
- **Accept**: application/json
|
|
244
242
|
|
|
245
243
|
|
data/docs/Transaction.md
CHANGED
|
@@ -8,16 +8,18 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**webid** | **String** | Webid of the transaction | [optional]
|
|
9
9
|
**application_date** | **Date** | Date considered by PFM services. It is used to change the month of a transaction, for example. | [optional]
|
|
10
10
|
**date** | **Date** | Debit date |
|
|
11
|
-
**value** | **Float** | Value of the transaction |
|
|
12
|
-
**
|
|
11
|
+
**value** | **Float** | Value of the transaction | [optional]
|
|
12
|
+
**gross_value** | **Float** | Gross value of the transaction | [optional]
|
|
13
|
+
**nature** | **String** | Type of transaction | [default to 'inconnu']
|
|
13
14
|
**original_wording** | **String** | Full label of the transaction |
|
|
14
15
|
**simplified_wording** | **String** | Simplified label of the transaction |
|
|
15
16
|
**stemmed_wording** | **String** | Do not use it |
|
|
16
17
|
**wording** | **String** | Label set by the user | [optional]
|
|
17
18
|
**id_category** | **Integer** | ID of the related category | [optional]
|
|
18
|
-
**state** | **String** | Internal state of the transaction | [default to
|
|
19
|
+
**state** | **String** | Internal state of the transaction | [default to 'new']
|
|
19
20
|
**date_scraped** | **DateTime** | Date when the transaction has been seen |
|
|
20
21
|
**rdate** | **Date** | Realization of the transaction |
|
|
22
|
+
**vdate** | **Date** | Value date of the transaction | [optional]
|
|
21
23
|
**coming** | **BOOLEAN** | If true, this transaction hasn't been yet debited |
|
|
22
24
|
**active** | **BOOLEAN** | If false, PFM services will ignore this transaction | [default to true]
|
|
23
25
|
**id_cluster** | **Integer** | If the transaction is part of a cluster | [optional]
|
|
@@ -28,6 +30,9 @@ Name | Type | Description | Notes
|
|
|
28
30
|
**original_value** | **Float** | Value in the original currency | [optional]
|
|
29
31
|
**original_currency** | **Object** | Original currency | [optional]
|
|
30
32
|
**commission** | **Float** | Commission taken on the transaction | [optional]
|
|
33
|
+
**commission_currency** | **Object** | Commission currency | [optional]
|
|
31
34
|
**country** | **String** | Original country | [optional]
|
|
35
|
+
**counterparty** | **String** | Counterparty | [optional]
|
|
36
|
+
**card** | **String** | Card number associated to the transaction | [optional]
|
|
32
37
|
|
|
33
38
|
|
data/docs/Transfer.md
CHANGED
|
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
|
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**id** | **Integer** | ID of transfer |
|
|
7
7
|
**id_account** | **Integer** | ID of the debited account | [optional]
|
|
8
|
+
**id_user** | **Integer** | ID of the related user | [optional]
|
|
8
9
|
**id_recipient** | **Integer** | ID of the recipient | [optional]
|
|
9
10
|
**account_iban** | **String** | IBAN of the debited account | [optional]
|
|
10
11
|
**recipient_iban** | **String** | IBAN of the recipient | [optional]
|
data/docs/TransferLog.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# BudgeaClient::TransferLog
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**id** | **Integer** | ID of the transfer log entry |
|
|
7
|
+
**id_transfer** | **Integer** | ID of the related transfer | [optional]
|
|
8
|
+
**id_file** | **Integer** | ID of the related file | [optional]
|
|
9
|
+
**request_data** | **String** | Data stored related to user who has requested the transfer | [optional]
|
|
10
|
+
**state** | **String** | State of the transfer (created, scheduled, validating, pending, done, canceled, error, bug) | [optional]
|
|
11
|
+
**error** | **String** | Error message during transfer, if any | [optional]
|
|
12
|
+
**timestamp** | **DateTime** | Timestamp of the log |
|
|
13
|
+
|
|
14
|
+
|
data/docs/TransfersApi.md
CHANGED
|
@@ -4,7 +4,7 @@ All URIs are relative to *https://demo.biapi.pro/2.0/*
|
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
|
-
[**users_id_user_accounts_id_account_recipients_get**](TransfersApi.md#users_id_user_accounts_id_account_recipients_get) | **GET** /users/{id_user}/accounts/{id_account}/recipients | Returns the list of recipients
|
|
7
|
+
[**users_id_user_accounts_id_account_recipients_get**](TransfersApi.md#users_id_user_accounts_id_account_recipients_get) | **GET** /users/{id_user}/accounts/{id_account}/recipients | Returns the list of recipients.
|
|
8
8
|
[**users_id_user_accounts_id_account_recipients_id_recipient_post**](TransfersApi.md#users_id_user_accounts_id_account_recipients_id_recipient_post) | **POST** /users/{id_user}/accounts/{id_account}/recipients/{id_recipient} | Continue addition of a recipient.
|
|
9
9
|
[**users_id_user_accounts_id_account_recipients_id_recipient_transfers_get**](TransfersApi.md#users_id_user_accounts_id_account_recipients_id_recipient_transfers_get) | **GET** /users/{id_user}/accounts/{id_account}/recipients/{id_recipient}/transfers | Get transfers
|
|
10
10
|
[**users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/accounts/{id_account}/recipients/{id_recipient}/transfers/{id_transfer} | Cancel a transfer.
|
|
@@ -14,7 +14,7 @@ Method | HTTP request | Description
|
|
|
14
14
|
[**users_id_user_accounts_id_account_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_accounts_id_account_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/accounts/{id_account}/transfers/{id_transfer} | Cancel a transfer.
|
|
15
15
|
[**users_id_user_accounts_id_account_transfers_id_transfer_post**](TransfersApi.md#users_id_user_accounts_id_account_transfers_id_transfer_post) | **POST** /users/{id_user}/accounts/{id_account}/transfers/{id_transfer} | Execute or edit a Transfer.
|
|
16
16
|
[**users_id_user_accounts_id_account_transfers_post**](TransfersApi.md#users_id_user_accounts_id_account_transfers_post) | **POST** /users/{id_user}/accounts/{id_account}/transfers | Create a transfer object.
|
|
17
|
-
[**users_id_user_connections_id_connection_accounts_id_account_recipients_get**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_recipients_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/recipients | Returns the list of recipients
|
|
17
|
+
[**users_id_user_connections_id_connection_accounts_id_account_recipients_get**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_recipients_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/recipients | Returns the list of recipients.
|
|
18
18
|
[**users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_post**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_post) | **POST** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/recipients/{id_recipient} | Continue addition of a recipient.
|
|
19
19
|
[**users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get) | **GET** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/recipients/{id_recipient}/transfers | Get transfers
|
|
20
20
|
[**users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/recipients/{id_recipient}/transfers/{id_transfer} | Cancel a transfer.
|
|
@@ -24,7 +24,7 @@ Method | HTTP request | Description
|
|
|
24
24
|
[**users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/transfers/{id_transfer} | Cancel a transfer.
|
|
25
25
|
[**users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_post**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_transfers_id_transfer_post) | **POST** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/transfers/{id_transfer} | Execute or edit a Transfer.
|
|
26
26
|
[**users_id_user_connections_id_connection_accounts_id_account_transfers_post**](TransfersApi.md#users_id_user_connections_id_connection_accounts_id_account_transfers_post) | **POST** /users/{id_user}/connections/{id_connection}/accounts/{id_account}/transfers | Create a transfer object.
|
|
27
|
-
[**users_id_user_connections_id_connection_recipients_get**](TransfersApi.md#users_id_user_connections_id_connection_recipients_get) | **GET** /users/{id_user}/connections/{id_connection}/recipients | Returns the list of recipients
|
|
27
|
+
[**users_id_user_connections_id_connection_recipients_get**](TransfersApi.md#users_id_user_connections_id_connection_recipients_get) | **GET** /users/{id_user}/connections/{id_connection}/recipients | Returns the list of recipients.
|
|
28
28
|
[**users_id_user_connections_id_connection_recipients_id_recipient_post**](TransfersApi.md#users_id_user_connections_id_connection_recipients_id_recipient_post) | **POST** /users/{id_user}/connections/{id_connection}/recipients/{id_recipient} | Continue addition of a recipient.
|
|
29
29
|
[**users_id_user_connections_id_connection_recipients_id_recipient_transfers_get**](TransfersApi.md#users_id_user_connections_id_connection_recipients_id_recipient_transfers_get) | **GET** /users/{id_user}/connections/{id_connection}/recipients/{id_recipient}/transfers | Get transfers
|
|
30
30
|
[**users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_connections_id_connection_recipients_id_recipient_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/connections/{id_connection}/recipients/{id_recipient}/transfers/{id_transfer} | Cancel a transfer.
|
|
@@ -34,7 +34,7 @@ Method | HTTP request | Description
|
|
|
34
34
|
[**users_id_user_connections_id_connection_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_connections_id_connection_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/connections/{id_connection}/transfers/{id_transfer} | Cancel a transfer.
|
|
35
35
|
[**users_id_user_connections_id_connection_transfers_id_transfer_post**](TransfersApi.md#users_id_user_connections_id_connection_transfers_id_transfer_post) | **POST** /users/{id_user}/connections/{id_connection}/transfers/{id_transfer} | Execute or edit a Transfer.
|
|
36
36
|
[**users_id_user_connections_id_connection_transfers_post**](TransfersApi.md#users_id_user_connections_id_connection_transfers_post) | **POST** /users/{id_user}/connections/{id_connection}/transfers | Create a transfer object.
|
|
37
|
-
[**users_id_user_recipients_get**](TransfersApi.md#users_id_user_recipients_get) | **GET** /users/{id_user}/recipients | Returns the list of recipients
|
|
37
|
+
[**users_id_user_recipients_get**](TransfersApi.md#users_id_user_recipients_get) | **GET** /users/{id_user}/recipients | Returns the list of recipients.
|
|
38
38
|
[**users_id_user_recipients_id_recipient_post**](TransfersApi.md#users_id_user_recipients_id_recipient_post) | **POST** /users/{id_user}/recipients/{id_recipient} | Continue addition of a recipient.
|
|
39
39
|
[**users_id_user_recipients_id_recipient_transfers_get**](TransfersApi.md#users_id_user_recipients_id_recipient_transfers_get) | **GET** /users/{id_user}/recipients/{id_recipient}/transfers | Get transfers
|
|
40
40
|
[**users_id_user_recipients_id_recipient_transfers_id_transfer_delete**](TransfersApi.md#users_id_user_recipients_id_recipient_transfers_id_transfer_delete) | **DELETE** /users/{id_user}/recipients/{id_recipient}/transfers/{id_transfer} | Cancel a transfer.
|
|
@@ -47,9 +47,9 @@ Method | HTTP request | Description
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
# **users_id_user_accounts_id_account_recipients_get**
|
|
50
|
-
>
|
|
50
|
+
> InlineResponse20025 users_id_user_accounts_id_account_recipients_get(id_user, id_account, opts)
|
|
51
51
|
|
|
52
|
-
Returns the list of recipients
|
|
52
|
+
Returns the list of recipients.
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
@@ -67,16 +67,16 @@ end
|
|
|
67
67
|
|
|
68
68
|
api_instance = BudgeaClient::TransfersApi.new
|
|
69
69
|
|
|
70
|
-
id_user =
|
|
70
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
71
71
|
|
|
72
72
|
id_account = 56 # Integer |
|
|
73
73
|
|
|
74
74
|
opts = {
|
|
75
|
-
expand:
|
|
75
|
+
expand: 'expand_example' # String |
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
begin
|
|
79
|
-
#Returns the list of recipients
|
|
79
|
+
#Returns the list of recipients.
|
|
80
80
|
result = api_instance.users_id_user_accounts_id_account_recipients_get(id_user, id_account, opts)
|
|
81
81
|
p result
|
|
82
82
|
rescue BudgeaClient::ApiError => e
|
|
@@ -94,7 +94,7 @@ Name | Type | Description | Notes
|
|
|
94
94
|
|
|
95
95
|
### Return type
|
|
96
96
|
|
|
97
|
-
[**
|
|
97
|
+
[**InlineResponse20025**](InlineResponse20025.md)
|
|
98
98
|
|
|
99
99
|
### Authorization
|
|
100
100
|
|
|
@@ -128,14 +128,15 @@ end
|
|
|
128
128
|
|
|
129
129
|
api_instance = BudgeaClient::TransfersApi.new
|
|
130
130
|
|
|
131
|
-
id_user =
|
|
131
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
132
132
|
|
|
133
133
|
id_account = 56 # Integer |
|
|
134
134
|
|
|
135
135
|
id_recipient = 56 # Integer |
|
|
136
136
|
|
|
137
137
|
opts = {
|
|
138
|
-
|
|
138
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
139
|
+
expand: 'expand_example' # String |
|
|
139
140
|
}
|
|
140
141
|
|
|
141
142
|
begin
|
|
@@ -154,6 +155,7 @@ Name | Type | Description | Notes
|
|
|
154
155
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
155
156
|
**id_account** | **Integer**| |
|
|
156
157
|
**id_recipient** | **Integer**| |
|
|
158
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
157
159
|
**expand** | **String**| | [optional]
|
|
158
160
|
|
|
159
161
|
### Return type
|
|
@@ -172,7 +174,7 @@ Name | Type | Description | Notes
|
|
|
172
174
|
|
|
173
175
|
|
|
174
176
|
# **users_id_user_accounts_id_account_recipients_id_recipient_transfers_get**
|
|
175
|
-
>
|
|
177
|
+
> InlineResponse20026 users_id_user_accounts_id_account_recipients_id_recipient_transfers_get(id_user, id_account, id_recipient, opts)
|
|
176
178
|
|
|
177
179
|
Get transfers
|
|
178
180
|
|
|
@@ -192,15 +194,15 @@ end
|
|
|
192
194
|
|
|
193
195
|
api_instance = BudgeaClient::TransfersApi.new
|
|
194
196
|
|
|
195
|
-
id_user =
|
|
197
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
196
198
|
|
|
197
199
|
id_account = 56 # Integer |
|
|
198
200
|
|
|
199
201
|
id_recipient = 56 # Integer |
|
|
200
202
|
|
|
201
203
|
opts = {
|
|
202
|
-
period:
|
|
203
|
-
expand:
|
|
204
|
+
period: 'period_example', # String | period to group logs
|
|
205
|
+
expand: 'expand_example' # String |
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
begin
|
|
@@ -224,7 +226,7 @@ Name | Type | Description | Notes
|
|
|
224
226
|
|
|
225
227
|
### Return type
|
|
226
228
|
|
|
227
|
-
[**
|
|
229
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
228
230
|
|
|
229
231
|
### Authorization
|
|
230
232
|
|
|
@@ -258,7 +260,7 @@ end
|
|
|
258
260
|
|
|
259
261
|
api_instance = BudgeaClient::TransfersApi.new
|
|
260
262
|
|
|
261
|
-
id_user =
|
|
263
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
262
264
|
|
|
263
265
|
id_account = 56 # Integer |
|
|
264
266
|
|
|
@@ -267,7 +269,7 @@ id_recipient = 56 # Integer |
|
|
|
267
269
|
id_transfer = 56 # Integer |
|
|
268
270
|
|
|
269
271
|
opts = {
|
|
270
|
-
expand:
|
|
272
|
+
expand: 'expand_example' # String |
|
|
271
273
|
}
|
|
272
274
|
|
|
273
275
|
begin
|
|
@@ -325,7 +327,7 @@ end
|
|
|
325
327
|
|
|
326
328
|
api_instance = BudgeaClient::TransfersApi.new
|
|
327
329
|
|
|
328
|
-
id_user =
|
|
330
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
329
331
|
|
|
330
332
|
id_account = 56 # Integer |
|
|
331
333
|
|
|
@@ -335,7 +337,8 @@ id_transfer = 56 # Integer |
|
|
|
335
337
|
|
|
336
338
|
opts = {
|
|
337
339
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
338
|
-
|
|
340
|
+
id_recipient2: 56, # Integer | set the recipient of the transfer
|
|
341
|
+
expand: 'expand_example' # String |
|
|
339
342
|
}
|
|
340
343
|
|
|
341
344
|
begin
|
|
@@ -356,6 +359,7 @@ Name | Type | Description | Notes
|
|
|
356
359
|
**id_recipient** | **Integer**| |
|
|
357
360
|
**id_transfer** | **Integer**| |
|
|
358
361
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
362
|
+
**id_recipient2** | **Integer**| set the recipient of the transfer | [optional]
|
|
359
363
|
**expand** | **String**| | [optional]
|
|
360
364
|
|
|
361
365
|
### Return type
|
|
@@ -394,7 +398,7 @@ end
|
|
|
394
398
|
|
|
395
399
|
api_instance = BudgeaClient::TransfersApi.new
|
|
396
400
|
|
|
397
|
-
id_user =
|
|
401
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
398
402
|
|
|
399
403
|
id_account = 56 # Integer |
|
|
400
404
|
|
|
@@ -403,9 +407,9 @@ id_recipient = 56 # Integer |
|
|
|
403
407
|
amount = 3.4 # Float | amount of transfer
|
|
404
408
|
|
|
405
409
|
opts = {
|
|
406
|
-
label:
|
|
407
|
-
exec_date: Date.parse(
|
|
408
|
-
expand:
|
|
410
|
+
label: 'label_example', # String | reason of transfer
|
|
411
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
412
|
+
expand: 'expand_example' # String |
|
|
409
413
|
}
|
|
410
414
|
|
|
411
415
|
begin
|
|
@@ -445,7 +449,7 @@ Name | Type | Description | Notes
|
|
|
445
449
|
|
|
446
450
|
|
|
447
451
|
# **users_id_user_accounts_id_account_transfers_get**
|
|
448
|
-
>
|
|
452
|
+
> InlineResponse20026 users_id_user_accounts_id_account_transfers_get(id_user, id_account, opts)
|
|
449
453
|
|
|
450
454
|
Get transfers
|
|
451
455
|
|
|
@@ -465,13 +469,13 @@ end
|
|
|
465
469
|
|
|
466
470
|
api_instance = BudgeaClient::TransfersApi.new
|
|
467
471
|
|
|
468
|
-
id_user =
|
|
472
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
469
473
|
|
|
470
474
|
id_account = 56 # Integer |
|
|
471
475
|
|
|
472
476
|
opts = {
|
|
473
|
-
period:
|
|
474
|
-
expand:
|
|
477
|
+
period: 'period_example', # String | period to group logs
|
|
478
|
+
expand: 'expand_example' # String |
|
|
475
479
|
}
|
|
476
480
|
|
|
477
481
|
begin
|
|
@@ -494,7 +498,7 @@ Name | Type | Description | Notes
|
|
|
494
498
|
|
|
495
499
|
### Return type
|
|
496
500
|
|
|
497
|
-
[**
|
|
501
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
498
502
|
|
|
499
503
|
### Authorization
|
|
500
504
|
|
|
@@ -528,14 +532,14 @@ end
|
|
|
528
532
|
|
|
529
533
|
api_instance = BudgeaClient::TransfersApi.new
|
|
530
534
|
|
|
531
|
-
id_user =
|
|
535
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
532
536
|
|
|
533
537
|
id_account = 56 # Integer |
|
|
534
538
|
|
|
535
539
|
id_transfer = 56 # Integer |
|
|
536
540
|
|
|
537
541
|
opts = {
|
|
538
|
-
expand:
|
|
542
|
+
expand: 'expand_example' # String |
|
|
539
543
|
}
|
|
540
544
|
|
|
541
545
|
begin
|
|
@@ -592,7 +596,7 @@ end
|
|
|
592
596
|
|
|
593
597
|
api_instance = BudgeaClient::TransfersApi.new
|
|
594
598
|
|
|
595
|
-
id_user =
|
|
599
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
596
600
|
|
|
597
601
|
id_account = 56 # Integer |
|
|
598
602
|
|
|
@@ -600,7 +604,8 @@ id_transfer = 56 # Integer |
|
|
|
600
604
|
|
|
601
605
|
opts = {
|
|
602
606
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
603
|
-
|
|
607
|
+
id_recipient: 56, # Integer | set the recipient of the transfer
|
|
608
|
+
expand: 'expand_example' # String |
|
|
604
609
|
}
|
|
605
610
|
|
|
606
611
|
begin
|
|
@@ -620,6 +625,7 @@ Name | Type | Description | Notes
|
|
|
620
625
|
**id_account** | **Integer**| |
|
|
621
626
|
**id_transfer** | **Integer**| |
|
|
622
627
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
628
|
+
**id_recipient** | **Integer**| set the recipient of the transfer | [optional]
|
|
623
629
|
**expand** | **String**| | [optional]
|
|
624
630
|
|
|
625
631
|
### Return type
|
|
@@ -658,16 +664,16 @@ end
|
|
|
658
664
|
|
|
659
665
|
api_instance = BudgeaClient::TransfersApi.new
|
|
660
666
|
|
|
661
|
-
id_user =
|
|
667
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
662
668
|
|
|
663
669
|
id_account = 56 # Integer |
|
|
664
670
|
|
|
665
671
|
amount = 3.4 # Float | amount of transfer
|
|
666
672
|
|
|
667
673
|
opts = {
|
|
668
|
-
label:
|
|
669
|
-
exec_date: Date.parse(
|
|
670
|
-
expand:
|
|
674
|
+
label: 'label_example', # String | reason of transfer
|
|
675
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
676
|
+
expand: 'expand_example' # String |
|
|
671
677
|
}
|
|
672
678
|
|
|
673
679
|
begin
|
|
@@ -706,9 +712,9 @@ Name | Type | Description | Notes
|
|
|
706
712
|
|
|
707
713
|
|
|
708
714
|
# **users_id_user_connections_id_connection_accounts_id_account_recipients_get**
|
|
709
|
-
>
|
|
715
|
+
> InlineResponse20025 users_id_user_connections_id_connection_accounts_id_account_recipients_get(id_user, id_connection, id_account, opts)
|
|
710
716
|
|
|
711
|
-
Returns the list of recipients
|
|
717
|
+
Returns the list of recipients.
|
|
712
718
|
|
|
713
719
|
|
|
714
720
|
|
|
@@ -726,18 +732,18 @@ end
|
|
|
726
732
|
|
|
727
733
|
api_instance = BudgeaClient::TransfersApi.new
|
|
728
734
|
|
|
729
|
-
id_user =
|
|
735
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
730
736
|
|
|
731
737
|
id_connection = 56 # Integer |
|
|
732
738
|
|
|
733
739
|
id_account = 56 # Integer |
|
|
734
740
|
|
|
735
741
|
opts = {
|
|
736
|
-
expand:
|
|
742
|
+
expand: 'expand_example' # String |
|
|
737
743
|
}
|
|
738
744
|
|
|
739
745
|
begin
|
|
740
|
-
#Returns the list of recipients
|
|
746
|
+
#Returns the list of recipients.
|
|
741
747
|
result = api_instance.users_id_user_connections_id_connection_accounts_id_account_recipients_get(id_user, id_connection, id_account, opts)
|
|
742
748
|
p result
|
|
743
749
|
rescue BudgeaClient::ApiError => e
|
|
@@ -756,7 +762,7 @@ Name | Type | Description | Notes
|
|
|
756
762
|
|
|
757
763
|
### Return type
|
|
758
764
|
|
|
759
|
-
[**
|
|
765
|
+
[**InlineResponse20025**](InlineResponse20025.md)
|
|
760
766
|
|
|
761
767
|
### Authorization
|
|
762
768
|
|
|
@@ -790,7 +796,7 @@ end
|
|
|
790
796
|
|
|
791
797
|
api_instance = BudgeaClient::TransfersApi.new
|
|
792
798
|
|
|
793
|
-
id_user =
|
|
799
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
794
800
|
|
|
795
801
|
id_connection = 56 # Integer |
|
|
796
802
|
|
|
@@ -799,7 +805,8 @@ id_account = 56 # Integer |
|
|
|
799
805
|
id_recipient = 56 # Integer |
|
|
800
806
|
|
|
801
807
|
opts = {
|
|
802
|
-
|
|
808
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
809
|
+
expand: 'expand_example' # String |
|
|
803
810
|
}
|
|
804
811
|
|
|
805
812
|
begin
|
|
@@ -819,6 +826,7 @@ Name | Type | Description | Notes
|
|
|
819
826
|
**id_connection** | **Integer**| |
|
|
820
827
|
**id_account** | **Integer**| |
|
|
821
828
|
**id_recipient** | **Integer**| |
|
|
829
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
822
830
|
**expand** | **String**| | [optional]
|
|
823
831
|
|
|
824
832
|
### Return type
|
|
@@ -837,7 +845,7 @@ Name | Type | Description | Notes
|
|
|
837
845
|
|
|
838
846
|
|
|
839
847
|
# **users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get**
|
|
840
|
-
>
|
|
848
|
+
> InlineResponse20026 users_id_user_connections_id_connection_accounts_id_account_recipients_id_recipient_transfers_get(id_user, id_connection, id_account, id_recipient, opts)
|
|
841
849
|
|
|
842
850
|
Get transfers
|
|
843
851
|
|
|
@@ -857,7 +865,7 @@ end
|
|
|
857
865
|
|
|
858
866
|
api_instance = BudgeaClient::TransfersApi.new
|
|
859
867
|
|
|
860
|
-
id_user =
|
|
868
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
861
869
|
|
|
862
870
|
id_connection = 56 # Integer |
|
|
863
871
|
|
|
@@ -866,8 +874,8 @@ id_account = 56 # Integer |
|
|
|
866
874
|
id_recipient = 56 # Integer |
|
|
867
875
|
|
|
868
876
|
opts = {
|
|
869
|
-
period:
|
|
870
|
-
expand:
|
|
877
|
+
period: 'period_example', # String | period to group logs
|
|
878
|
+
expand: 'expand_example' # String |
|
|
871
879
|
}
|
|
872
880
|
|
|
873
881
|
begin
|
|
@@ -892,7 +900,7 @@ Name | Type | Description | Notes
|
|
|
892
900
|
|
|
893
901
|
### Return type
|
|
894
902
|
|
|
895
|
-
[**
|
|
903
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
896
904
|
|
|
897
905
|
### Authorization
|
|
898
906
|
|
|
@@ -926,7 +934,7 @@ end
|
|
|
926
934
|
|
|
927
935
|
api_instance = BudgeaClient::TransfersApi.new
|
|
928
936
|
|
|
929
|
-
id_user =
|
|
937
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
930
938
|
|
|
931
939
|
id_connection = 56 # Integer |
|
|
932
940
|
|
|
@@ -937,7 +945,7 @@ id_recipient = 56 # Integer |
|
|
|
937
945
|
id_transfer = 56 # Integer |
|
|
938
946
|
|
|
939
947
|
opts = {
|
|
940
|
-
expand:
|
|
948
|
+
expand: 'expand_example' # String |
|
|
941
949
|
}
|
|
942
950
|
|
|
943
951
|
begin
|
|
@@ -996,7 +1004,7 @@ end
|
|
|
996
1004
|
|
|
997
1005
|
api_instance = BudgeaClient::TransfersApi.new
|
|
998
1006
|
|
|
999
|
-
id_user =
|
|
1007
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1000
1008
|
|
|
1001
1009
|
id_connection = 56 # Integer |
|
|
1002
1010
|
|
|
@@ -1008,7 +1016,8 @@ id_transfer = 56 # Integer |
|
|
|
1008
1016
|
|
|
1009
1017
|
opts = {
|
|
1010
1018
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
1011
|
-
|
|
1019
|
+
id_recipient2: 56, # Integer | set the recipient of the transfer
|
|
1020
|
+
expand: 'expand_example' # String |
|
|
1012
1021
|
}
|
|
1013
1022
|
|
|
1014
1023
|
begin
|
|
@@ -1030,6 +1039,7 @@ Name | Type | Description | Notes
|
|
|
1030
1039
|
**id_recipient** | **Integer**| |
|
|
1031
1040
|
**id_transfer** | **Integer**| |
|
|
1032
1041
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
1042
|
+
**id_recipient2** | **Integer**| set the recipient of the transfer | [optional]
|
|
1033
1043
|
**expand** | **String**| | [optional]
|
|
1034
1044
|
|
|
1035
1045
|
### Return type
|
|
@@ -1068,7 +1078,7 @@ end
|
|
|
1068
1078
|
|
|
1069
1079
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1070
1080
|
|
|
1071
|
-
id_user =
|
|
1081
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1072
1082
|
|
|
1073
1083
|
id_connection = 56 # Integer |
|
|
1074
1084
|
|
|
@@ -1079,9 +1089,9 @@ id_recipient = 56 # Integer |
|
|
|
1079
1089
|
amount = 3.4 # Float | amount of transfer
|
|
1080
1090
|
|
|
1081
1091
|
opts = {
|
|
1082
|
-
label:
|
|
1083
|
-
exec_date: Date.parse(
|
|
1084
|
-
expand:
|
|
1092
|
+
label: 'label_example', # String | reason of transfer
|
|
1093
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
1094
|
+
expand: 'expand_example' # String |
|
|
1085
1095
|
}
|
|
1086
1096
|
|
|
1087
1097
|
begin
|
|
@@ -1122,7 +1132,7 @@ Name | Type | Description | Notes
|
|
|
1122
1132
|
|
|
1123
1133
|
|
|
1124
1134
|
# **users_id_user_connections_id_connection_accounts_id_account_transfers_get**
|
|
1125
|
-
>
|
|
1135
|
+
> InlineResponse20026 users_id_user_connections_id_connection_accounts_id_account_transfers_get(id_user, id_connection, id_account, opts)
|
|
1126
1136
|
|
|
1127
1137
|
Get transfers
|
|
1128
1138
|
|
|
@@ -1142,15 +1152,15 @@ end
|
|
|
1142
1152
|
|
|
1143
1153
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1144
1154
|
|
|
1145
|
-
id_user =
|
|
1155
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1146
1156
|
|
|
1147
1157
|
id_connection = 56 # Integer |
|
|
1148
1158
|
|
|
1149
1159
|
id_account = 56 # Integer |
|
|
1150
1160
|
|
|
1151
1161
|
opts = {
|
|
1152
|
-
period:
|
|
1153
|
-
expand:
|
|
1162
|
+
period: 'period_example', # String | period to group logs
|
|
1163
|
+
expand: 'expand_example' # String |
|
|
1154
1164
|
}
|
|
1155
1165
|
|
|
1156
1166
|
begin
|
|
@@ -1174,7 +1184,7 @@ Name | Type | Description | Notes
|
|
|
1174
1184
|
|
|
1175
1185
|
### Return type
|
|
1176
1186
|
|
|
1177
|
-
[**
|
|
1187
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
1178
1188
|
|
|
1179
1189
|
### Authorization
|
|
1180
1190
|
|
|
@@ -1208,7 +1218,7 @@ end
|
|
|
1208
1218
|
|
|
1209
1219
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1210
1220
|
|
|
1211
|
-
id_user =
|
|
1221
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1212
1222
|
|
|
1213
1223
|
id_connection = 56 # Integer |
|
|
1214
1224
|
|
|
@@ -1217,7 +1227,7 @@ id_account = 56 # Integer |
|
|
|
1217
1227
|
id_transfer = 56 # Integer |
|
|
1218
1228
|
|
|
1219
1229
|
opts = {
|
|
1220
|
-
expand:
|
|
1230
|
+
expand: 'expand_example' # String |
|
|
1221
1231
|
}
|
|
1222
1232
|
|
|
1223
1233
|
begin
|
|
@@ -1275,7 +1285,7 @@ end
|
|
|
1275
1285
|
|
|
1276
1286
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1277
1287
|
|
|
1278
|
-
id_user =
|
|
1288
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1279
1289
|
|
|
1280
1290
|
id_connection = 56 # Integer |
|
|
1281
1291
|
|
|
@@ -1285,7 +1295,8 @@ id_transfer = 56 # Integer |
|
|
|
1285
1295
|
|
|
1286
1296
|
opts = {
|
|
1287
1297
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
1288
|
-
|
|
1298
|
+
id_recipient: 56, # Integer | set the recipient of the transfer
|
|
1299
|
+
expand: 'expand_example' # String |
|
|
1289
1300
|
}
|
|
1290
1301
|
|
|
1291
1302
|
begin
|
|
@@ -1306,6 +1317,7 @@ Name | Type | Description | Notes
|
|
|
1306
1317
|
**id_account** | **Integer**| |
|
|
1307
1318
|
**id_transfer** | **Integer**| |
|
|
1308
1319
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
1320
|
+
**id_recipient** | **Integer**| set the recipient of the transfer | [optional]
|
|
1309
1321
|
**expand** | **String**| | [optional]
|
|
1310
1322
|
|
|
1311
1323
|
### Return type
|
|
@@ -1344,7 +1356,7 @@ end
|
|
|
1344
1356
|
|
|
1345
1357
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1346
1358
|
|
|
1347
|
-
id_user =
|
|
1359
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1348
1360
|
|
|
1349
1361
|
id_connection = 56 # Integer |
|
|
1350
1362
|
|
|
@@ -1353,9 +1365,9 @@ id_account = 56 # Integer |
|
|
|
1353
1365
|
amount = 3.4 # Float | amount of transfer
|
|
1354
1366
|
|
|
1355
1367
|
opts = {
|
|
1356
|
-
label:
|
|
1357
|
-
exec_date: Date.parse(
|
|
1358
|
-
expand:
|
|
1368
|
+
label: 'label_example', # String | reason of transfer
|
|
1369
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
1370
|
+
expand: 'expand_example' # String |
|
|
1359
1371
|
}
|
|
1360
1372
|
|
|
1361
1373
|
begin
|
|
@@ -1395,9 +1407,9 @@ Name | Type | Description | Notes
|
|
|
1395
1407
|
|
|
1396
1408
|
|
|
1397
1409
|
# **users_id_user_connections_id_connection_recipients_get**
|
|
1398
|
-
>
|
|
1410
|
+
> InlineResponse20025 users_id_user_connections_id_connection_recipients_get(id_user, id_connection, opts)
|
|
1399
1411
|
|
|
1400
|
-
Returns the list of recipients
|
|
1412
|
+
Returns the list of recipients.
|
|
1401
1413
|
|
|
1402
1414
|
|
|
1403
1415
|
|
|
@@ -1415,16 +1427,16 @@ end
|
|
|
1415
1427
|
|
|
1416
1428
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1417
1429
|
|
|
1418
|
-
id_user =
|
|
1430
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1419
1431
|
|
|
1420
1432
|
id_connection = 56 # Integer |
|
|
1421
1433
|
|
|
1422
1434
|
opts = {
|
|
1423
|
-
expand:
|
|
1435
|
+
expand: 'expand_example' # String |
|
|
1424
1436
|
}
|
|
1425
1437
|
|
|
1426
1438
|
begin
|
|
1427
|
-
#Returns the list of recipients
|
|
1439
|
+
#Returns the list of recipients.
|
|
1428
1440
|
result = api_instance.users_id_user_connections_id_connection_recipients_get(id_user, id_connection, opts)
|
|
1429
1441
|
p result
|
|
1430
1442
|
rescue BudgeaClient::ApiError => e
|
|
@@ -1442,7 +1454,7 @@ Name | Type | Description | Notes
|
|
|
1442
1454
|
|
|
1443
1455
|
### Return type
|
|
1444
1456
|
|
|
1445
|
-
[**
|
|
1457
|
+
[**InlineResponse20025**](InlineResponse20025.md)
|
|
1446
1458
|
|
|
1447
1459
|
### Authorization
|
|
1448
1460
|
|
|
@@ -1476,14 +1488,15 @@ end
|
|
|
1476
1488
|
|
|
1477
1489
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1478
1490
|
|
|
1479
|
-
id_user =
|
|
1491
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1480
1492
|
|
|
1481
1493
|
id_connection = 56 # Integer |
|
|
1482
1494
|
|
|
1483
1495
|
id_recipient = 56 # Integer |
|
|
1484
1496
|
|
|
1485
1497
|
opts = {
|
|
1486
|
-
|
|
1498
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
1499
|
+
expand: 'expand_example' # String |
|
|
1487
1500
|
}
|
|
1488
1501
|
|
|
1489
1502
|
begin
|
|
@@ -1502,6 +1515,7 @@ Name | Type | Description | Notes
|
|
|
1502
1515
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
1503
1516
|
**id_connection** | **Integer**| |
|
|
1504
1517
|
**id_recipient** | **Integer**| |
|
|
1518
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
1505
1519
|
**expand** | **String**| | [optional]
|
|
1506
1520
|
|
|
1507
1521
|
### Return type
|
|
@@ -1520,7 +1534,7 @@ Name | Type | Description | Notes
|
|
|
1520
1534
|
|
|
1521
1535
|
|
|
1522
1536
|
# **users_id_user_connections_id_connection_recipients_id_recipient_transfers_get**
|
|
1523
|
-
>
|
|
1537
|
+
> InlineResponse20026 users_id_user_connections_id_connection_recipients_id_recipient_transfers_get(id_user, id_connection, id_recipient, opts)
|
|
1524
1538
|
|
|
1525
1539
|
Get transfers
|
|
1526
1540
|
|
|
@@ -1540,15 +1554,15 @@ end
|
|
|
1540
1554
|
|
|
1541
1555
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1542
1556
|
|
|
1543
|
-
id_user =
|
|
1557
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1544
1558
|
|
|
1545
1559
|
id_connection = 56 # Integer |
|
|
1546
1560
|
|
|
1547
1561
|
id_recipient = 56 # Integer |
|
|
1548
1562
|
|
|
1549
1563
|
opts = {
|
|
1550
|
-
period:
|
|
1551
|
-
expand:
|
|
1564
|
+
period: 'period_example', # String | period to group logs
|
|
1565
|
+
expand: 'expand_example' # String |
|
|
1552
1566
|
}
|
|
1553
1567
|
|
|
1554
1568
|
begin
|
|
@@ -1572,7 +1586,7 @@ Name | Type | Description | Notes
|
|
|
1572
1586
|
|
|
1573
1587
|
### Return type
|
|
1574
1588
|
|
|
1575
|
-
[**
|
|
1589
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
1576
1590
|
|
|
1577
1591
|
### Authorization
|
|
1578
1592
|
|
|
@@ -1606,7 +1620,7 @@ end
|
|
|
1606
1620
|
|
|
1607
1621
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1608
1622
|
|
|
1609
|
-
id_user =
|
|
1623
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1610
1624
|
|
|
1611
1625
|
id_connection = 56 # Integer |
|
|
1612
1626
|
|
|
@@ -1615,7 +1629,7 @@ id_recipient = 56 # Integer |
|
|
|
1615
1629
|
id_transfer = 56 # Integer |
|
|
1616
1630
|
|
|
1617
1631
|
opts = {
|
|
1618
|
-
expand:
|
|
1632
|
+
expand: 'expand_example' # String |
|
|
1619
1633
|
}
|
|
1620
1634
|
|
|
1621
1635
|
begin
|
|
@@ -1673,7 +1687,7 @@ end
|
|
|
1673
1687
|
|
|
1674
1688
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1675
1689
|
|
|
1676
|
-
id_user =
|
|
1690
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1677
1691
|
|
|
1678
1692
|
id_connection = 56 # Integer |
|
|
1679
1693
|
|
|
@@ -1683,7 +1697,8 @@ id_transfer = 56 # Integer |
|
|
|
1683
1697
|
|
|
1684
1698
|
opts = {
|
|
1685
1699
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
1686
|
-
|
|
1700
|
+
id_recipient2: 56, # Integer | set the recipient of the transfer
|
|
1701
|
+
expand: 'expand_example' # String |
|
|
1687
1702
|
}
|
|
1688
1703
|
|
|
1689
1704
|
begin
|
|
@@ -1704,6 +1719,7 @@ Name | Type | Description | Notes
|
|
|
1704
1719
|
**id_recipient** | **Integer**| |
|
|
1705
1720
|
**id_transfer** | **Integer**| |
|
|
1706
1721
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
1722
|
+
**id_recipient2** | **Integer**| set the recipient of the transfer | [optional]
|
|
1707
1723
|
**expand** | **String**| | [optional]
|
|
1708
1724
|
|
|
1709
1725
|
### Return type
|
|
@@ -1742,7 +1758,7 @@ end
|
|
|
1742
1758
|
|
|
1743
1759
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1744
1760
|
|
|
1745
|
-
id_user =
|
|
1761
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1746
1762
|
|
|
1747
1763
|
id_connection = 56 # Integer |
|
|
1748
1764
|
|
|
@@ -1751,9 +1767,9 @@ id_recipient = 56 # Integer |
|
|
|
1751
1767
|
amount = 3.4 # Float | amount of transfer
|
|
1752
1768
|
|
|
1753
1769
|
opts = {
|
|
1754
|
-
label:
|
|
1755
|
-
exec_date: Date.parse(
|
|
1756
|
-
expand:
|
|
1770
|
+
label: 'label_example', # String | reason of transfer
|
|
1771
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
1772
|
+
expand: 'expand_example' # String |
|
|
1757
1773
|
}
|
|
1758
1774
|
|
|
1759
1775
|
begin
|
|
@@ -1793,7 +1809,7 @@ Name | Type | Description | Notes
|
|
|
1793
1809
|
|
|
1794
1810
|
|
|
1795
1811
|
# **users_id_user_connections_id_connection_transfers_get**
|
|
1796
|
-
>
|
|
1812
|
+
> InlineResponse20026 users_id_user_connections_id_connection_transfers_get(id_user, id_connection, opts)
|
|
1797
1813
|
|
|
1798
1814
|
Get transfers
|
|
1799
1815
|
|
|
@@ -1813,13 +1829,13 @@ end
|
|
|
1813
1829
|
|
|
1814
1830
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1815
1831
|
|
|
1816
|
-
id_user =
|
|
1832
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1817
1833
|
|
|
1818
1834
|
id_connection = 56 # Integer |
|
|
1819
1835
|
|
|
1820
1836
|
opts = {
|
|
1821
|
-
period:
|
|
1822
|
-
expand:
|
|
1837
|
+
period: 'period_example', # String | period to group logs
|
|
1838
|
+
expand: 'expand_example' # String |
|
|
1823
1839
|
}
|
|
1824
1840
|
|
|
1825
1841
|
begin
|
|
@@ -1842,7 +1858,7 @@ Name | Type | Description | Notes
|
|
|
1842
1858
|
|
|
1843
1859
|
### Return type
|
|
1844
1860
|
|
|
1845
|
-
[**
|
|
1861
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
1846
1862
|
|
|
1847
1863
|
### Authorization
|
|
1848
1864
|
|
|
@@ -1876,14 +1892,14 @@ end
|
|
|
1876
1892
|
|
|
1877
1893
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1878
1894
|
|
|
1879
|
-
id_user =
|
|
1895
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1880
1896
|
|
|
1881
1897
|
id_connection = 56 # Integer |
|
|
1882
1898
|
|
|
1883
1899
|
id_transfer = 56 # Integer |
|
|
1884
1900
|
|
|
1885
1901
|
opts = {
|
|
1886
|
-
expand:
|
|
1902
|
+
expand: 'expand_example' # String |
|
|
1887
1903
|
}
|
|
1888
1904
|
|
|
1889
1905
|
begin
|
|
@@ -1940,7 +1956,7 @@ end
|
|
|
1940
1956
|
|
|
1941
1957
|
api_instance = BudgeaClient::TransfersApi.new
|
|
1942
1958
|
|
|
1943
|
-
id_user =
|
|
1959
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1944
1960
|
|
|
1945
1961
|
id_connection = 56 # Integer |
|
|
1946
1962
|
|
|
@@ -1948,7 +1964,8 @@ id_transfer = 56 # Integer |
|
|
|
1948
1964
|
|
|
1949
1965
|
opts = {
|
|
1950
1966
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
1951
|
-
|
|
1967
|
+
id_recipient: 56, # Integer | set the recipient of the transfer
|
|
1968
|
+
expand: 'expand_example' # String |
|
|
1952
1969
|
}
|
|
1953
1970
|
|
|
1954
1971
|
begin
|
|
@@ -1968,6 +1985,7 @@ Name | Type | Description | Notes
|
|
|
1968
1985
|
**id_connection** | **Integer**| |
|
|
1969
1986
|
**id_transfer** | **Integer**| |
|
|
1970
1987
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
1988
|
+
**id_recipient** | **Integer**| set the recipient of the transfer | [optional]
|
|
1971
1989
|
**expand** | **String**| | [optional]
|
|
1972
1990
|
|
|
1973
1991
|
### Return type
|
|
@@ -2006,16 +2024,16 @@ end
|
|
|
2006
2024
|
|
|
2007
2025
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2008
2026
|
|
|
2009
|
-
id_user =
|
|
2027
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2010
2028
|
|
|
2011
2029
|
id_connection = 56 # Integer |
|
|
2012
2030
|
|
|
2013
2031
|
amount = 3.4 # Float | amount of transfer
|
|
2014
2032
|
|
|
2015
2033
|
opts = {
|
|
2016
|
-
label:
|
|
2017
|
-
exec_date: Date.parse(
|
|
2018
|
-
expand:
|
|
2034
|
+
label: 'label_example', # String | reason of transfer
|
|
2035
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
2036
|
+
expand: 'expand_example' # String |
|
|
2019
2037
|
}
|
|
2020
2038
|
|
|
2021
2039
|
begin
|
|
@@ -2054,9 +2072,9 @@ Name | Type | Description | Notes
|
|
|
2054
2072
|
|
|
2055
2073
|
|
|
2056
2074
|
# **users_id_user_recipients_get**
|
|
2057
|
-
>
|
|
2075
|
+
> InlineResponse20025 users_id_user_recipients_get(id_user, opts)
|
|
2058
2076
|
|
|
2059
|
-
Returns the list of recipients
|
|
2077
|
+
Returns the list of recipients.
|
|
2060
2078
|
|
|
2061
2079
|
|
|
2062
2080
|
|
|
@@ -2074,14 +2092,14 @@ end
|
|
|
2074
2092
|
|
|
2075
2093
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2076
2094
|
|
|
2077
|
-
id_user =
|
|
2095
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2078
2096
|
|
|
2079
2097
|
opts = {
|
|
2080
|
-
expand:
|
|
2098
|
+
expand: 'expand_example' # String |
|
|
2081
2099
|
}
|
|
2082
2100
|
|
|
2083
2101
|
begin
|
|
2084
|
-
#Returns the list of recipients
|
|
2102
|
+
#Returns the list of recipients.
|
|
2085
2103
|
result = api_instance.users_id_user_recipients_get(id_user, opts)
|
|
2086
2104
|
p result
|
|
2087
2105
|
rescue BudgeaClient::ApiError => e
|
|
@@ -2098,7 +2116,7 @@ Name | Type | Description | Notes
|
|
|
2098
2116
|
|
|
2099
2117
|
### Return type
|
|
2100
2118
|
|
|
2101
|
-
[**
|
|
2119
|
+
[**InlineResponse20025**](InlineResponse20025.md)
|
|
2102
2120
|
|
|
2103
2121
|
### Authorization
|
|
2104
2122
|
|
|
@@ -2132,12 +2150,13 @@ end
|
|
|
2132
2150
|
|
|
2133
2151
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2134
2152
|
|
|
2135
|
-
id_user =
|
|
2153
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2136
2154
|
|
|
2137
2155
|
id_recipient = 56 # Integer |
|
|
2138
2156
|
|
|
2139
2157
|
opts = {
|
|
2140
|
-
|
|
2158
|
+
background: true, # BOOLEAN | if true, do synchronization in background
|
|
2159
|
+
expand: 'expand_example' # String |
|
|
2141
2160
|
}
|
|
2142
2161
|
|
|
2143
2162
|
begin
|
|
@@ -2155,6 +2174,7 @@ Name | Type | Description | Notes
|
|
|
2155
2174
|
------------- | ------------- | ------------- | -------------
|
|
2156
2175
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
2157
2176
|
**id_recipient** | **Integer**| |
|
|
2177
|
+
**background** | **BOOLEAN**| if true, do synchronization in background | [optional]
|
|
2158
2178
|
**expand** | **String**| | [optional]
|
|
2159
2179
|
|
|
2160
2180
|
### Return type
|
|
@@ -2173,7 +2193,7 @@ Name | Type | Description | Notes
|
|
|
2173
2193
|
|
|
2174
2194
|
|
|
2175
2195
|
# **users_id_user_recipients_id_recipient_transfers_get**
|
|
2176
|
-
>
|
|
2196
|
+
> InlineResponse20026 users_id_user_recipients_id_recipient_transfers_get(id_user, id_recipient, opts)
|
|
2177
2197
|
|
|
2178
2198
|
Get transfers
|
|
2179
2199
|
|
|
@@ -2193,13 +2213,13 @@ end
|
|
|
2193
2213
|
|
|
2194
2214
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2195
2215
|
|
|
2196
|
-
id_user =
|
|
2216
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2197
2217
|
|
|
2198
2218
|
id_recipient = 56 # Integer |
|
|
2199
2219
|
|
|
2200
2220
|
opts = {
|
|
2201
|
-
period:
|
|
2202
|
-
expand:
|
|
2221
|
+
period: 'period_example', # String | period to group logs
|
|
2222
|
+
expand: 'expand_example' # String |
|
|
2203
2223
|
}
|
|
2204
2224
|
|
|
2205
2225
|
begin
|
|
@@ -2222,7 +2242,7 @@ Name | Type | Description | Notes
|
|
|
2222
2242
|
|
|
2223
2243
|
### Return type
|
|
2224
2244
|
|
|
2225
|
-
[**
|
|
2245
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
2226
2246
|
|
|
2227
2247
|
### Authorization
|
|
2228
2248
|
|
|
@@ -2256,14 +2276,14 @@ end
|
|
|
2256
2276
|
|
|
2257
2277
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2258
2278
|
|
|
2259
|
-
id_user =
|
|
2279
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2260
2280
|
|
|
2261
2281
|
id_recipient = 56 # Integer |
|
|
2262
2282
|
|
|
2263
2283
|
id_transfer = 56 # Integer |
|
|
2264
2284
|
|
|
2265
2285
|
opts = {
|
|
2266
|
-
expand:
|
|
2286
|
+
expand: 'expand_example' # String |
|
|
2267
2287
|
}
|
|
2268
2288
|
|
|
2269
2289
|
begin
|
|
@@ -2320,7 +2340,7 @@ end
|
|
|
2320
2340
|
|
|
2321
2341
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2322
2342
|
|
|
2323
|
-
id_user =
|
|
2343
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2324
2344
|
|
|
2325
2345
|
id_recipient = 56 # Integer |
|
|
2326
2346
|
|
|
@@ -2328,7 +2348,8 @@ id_transfer = 56 # Integer |
|
|
|
2328
2348
|
|
|
2329
2349
|
opts = {
|
|
2330
2350
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
2331
|
-
|
|
2351
|
+
id_recipient2: 56, # Integer | set the recipient of the transfer
|
|
2352
|
+
expand: 'expand_example' # String |
|
|
2332
2353
|
}
|
|
2333
2354
|
|
|
2334
2355
|
begin
|
|
@@ -2348,6 +2369,7 @@ Name | Type | Description | Notes
|
|
|
2348
2369
|
**id_recipient** | **Integer**| |
|
|
2349
2370
|
**id_transfer** | **Integer**| |
|
|
2350
2371
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
2372
|
+
**id_recipient2** | **Integer**| set the recipient of the transfer | [optional]
|
|
2351
2373
|
**expand** | **String**| | [optional]
|
|
2352
2374
|
|
|
2353
2375
|
### Return type
|
|
@@ -2386,16 +2408,16 @@ end
|
|
|
2386
2408
|
|
|
2387
2409
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2388
2410
|
|
|
2389
|
-
id_user =
|
|
2411
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2390
2412
|
|
|
2391
2413
|
id_recipient = 56 # Integer |
|
|
2392
2414
|
|
|
2393
2415
|
amount = 3.4 # Float | amount of transfer
|
|
2394
2416
|
|
|
2395
2417
|
opts = {
|
|
2396
|
-
label:
|
|
2397
|
-
exec_date: Date.parse(
|
|
2398
|
-
expand:
|
|
2418
|
+
label: 'label_example', # String | reason of transfer
|
|
2419
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
2420
|
+
expand: 'expand_example' # String |
|
|
2399
2421
|
}
|
|
2400
2422
|
|
|
2401
2423
|
begin
|
|
@@ -2434,7 +2456,7 @@ Name | Type | Description | Notes
|
|
|
2434
2456
|
|
|
2435
2457
|
|
|
2436
2458
|
# **users_id_user_transfers_get**
|
|
2437
|
-
>
|
|
2459
|
+
> InlineResponse20026 users_id_user_transfers_get(id_user, opts)
|
|
2438
2460
|
|
|
2439
2461
|
Get transfers
|
|
2440
2462
|
|
|
@@ -2454,11 +2476,11 @@ end
|
|
|
2454
2476
|
|
|
2455
2477
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2456
2478
|
|
|
2457
|
-
id_user =
|
|
2479
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2458
2480
|
|
|
2459
2481
|
opts = {
|
|
2460
|
-
period:
|
|
2461
|
-
expand:
|
|
2482
|
+
period: 'period_example', # String | period to group logs
|
|
2483
|
+
expand: 'expand_example' # String |
|
|
2462
2484
|
}
|
|
2463
2485
|
|
|
2464
2486
|
begin
|
|
@@ -2480,7 +2502,7 @@ Name | Type | Description | Notes
|
|
|
2480
2502
|
|
|
2481
2503
|
### Return type
|
|
2482
2504
|
|
|
2483
|
-
[**
|
|
2505
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
|
2484
2506
|
|
|
2485
2507
|
### Authorization
|
|
2486
2508
|
|
|
@@ -2514,12 +2536,12 @@ end
|
|
|
2514
2536
|
|
|
2515
2537
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2516
2538
|
|
|
2517
|
-
id_user =
|
|
2539
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2518
2540
|
|
|
2519
2541
|
id_transfer = 56 # Integer |
|
|
2520
2542
|
|
|
2521
2543
|
opts = {
|
|
2522
|
-
expand:
|
|
2544
|
+
expand: 'expand_example' # String |
|
|
2523
2545
|
}
|
|
2524
2546
|
|
|
2525
2547
|
begin
|
|
@@ -2575,13 +2597,14 @@ end
|
|
|
2575
2597
|
|
|
2576
2598
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2577
2599
|
|
|
2578
|
-
id_user =
|
|
2600
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2579
2601
|
|
|
2580
2602
|
id_transfer = 56 # Integer |
|
|
2581
2603
|
|
|
2582
2604
|
opts = {
|
|
2583
2605
|
validated: true, # BOOLEAN | set it to initialize transfer on the bank website.
|
|
2584
|
-
|
|
2606
|
+
id_recipient: 56, # Integer | set the recipient of the transfer
|
|
2607
|
+
expand: 'expand_example' # String |
|
|
2585
2608
|
}
|
|
2586
2609
|
|
|
2587
2610
|
begin
|
|
@@ -2600,6 +2623,7 @@ Name | Type | Description | Notes
|
|
|
2600
2623
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
2601
2624
|
**id_transfer** | **Integer**| |
|
|
2602
2625
|
**validated** | **BOOLEAN**| set it to initialize transfer on the bank website. | [optional]
|
|
2626
|
+
**id_recipient** | **Integer**| set the recipient of the transfer | [optional]
|
|
2603
2627
|
**expand** | **String**| | [optional]
|
|
2604
2628
|
|
|
2605
2629
|
### Return type
|
|
@@ -2638,14 +2662,14 @@ end
|
|
|
2638
2662
|
|
|
2639
2663
|
api_instance = BudgeaClient::TransfersApi.new
|
|
2640
2664
|
|
|
2641
|
-
id_user =
|
|
2665
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2642
2666
|
|
|
2643
2667
|
amount = 3.4 # Float | amount of transfer
|
|
2644
2668
|
|
|
2645
2669
|
opts = {
|
|
2646
|
-
label:
|
|
2647
|
-
exec_date: Date.parse(
|
|
2648
|
-
expand:
|
|
2670
|
+
label: 'label_example', # String | reason of transfer
|
|
2671
|
+
exec_date: Date.parse('2013-10-20'), # Date | excution date of transfer
|
|
2672
|
+
expand: 'expand_example' # String |
|
|
2649
2673
|
}
|
|
2650
2674
|
|
|
2651
2675
|
begin
|
|
@@ -2677,7 +2701,7 @@ Name | Type | Description | Notes
|
|
|
2677
2701
|
|
|
2678
2702
|
### HTTP request headers
|
|
2679
2703
|
|
|
2680
|
-
- **Content-Type**:
|
|
2704
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
2681
2705
|
- **Accept**: application/json
|
|
2682
2706
|
|
|
2683
2707
|
|