budgea_client 5.0.4 → 5.1.1
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 +1 -1
- data/README.md +19 -6
- data/budgea_openapi.json +1605 -1319
- data/config.json +1 -1
- data/docs/Account.md +1 -0
- data/docs/AdministrationApi.md +12 -12
- data/docs/BanksApi.md +263 -18
- data/docs/ConnectionsApi.md +251 -6
- data/docs/DocumentsApi.md +2 -2
- 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/InlineResponse20030.md +1 -1
- data/docs/PFMApi.md +9 -9
- data/docs/ProvidersApi.md +253 -8
- data/docs/TermsApi.md +72 -7
- data/docs/TransfersApi.md +24 -24
- data/docs/UsersManagementApi.md +2 -2
- data/docs/WealthApi.md +53 -37
- data/lib/budgea_client/api/administration_api.rb +13 -13
- data/lib/budgea_client/api/banks_api.rb +273 -27
- data/lib/budgea_client/api/connections_api.rb +255 -9
- data/lib/budgea_client/api/documents_api.rb +3 -3
- data/lib/budgea_client/api/pfm_api.rb +11 -11
- data/lib/budgea_client/api/providers_api.rb +258 -12
- data/lib/budgea_client/api/terms_api.rb +75 -9
- data/lib/budgea_client/api/transfers_api.rb +36 -36
- data/lib/budgea_client/api/users_management_api.rb +3 -3
- data/lib/budgea_client/api/wealth_api.rb +77 -53
- data/lib/budgea_client/models/account.rb +12 -1
- data/lib/budgea_client/models/inline_response_200_16.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_17.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_18.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_19.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_20.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_21.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_22.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_23.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_24.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_25.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_26.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_27.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_28.rb +11 -11
- data/lib/budgea_client/models/inline_response_200_29.rb +18 -18
- data/lib/budgea_client/models/inline_response_200_30.rb +11 -11
- data/lib/budgea_client/version.rb +1 -1
- data/original_budgea_openapi.json +1559 -1474
- metadata +2 -9
- data/config.yaml +0 -15
- data/pkg/budgea_client-2.0.1.gem +0 -0
- data/pkg/budgea_client-2.0.2.gem +0 -0
- data/pkg/budgea_client-3.0.0.gem +0 -0
- data/pkg/budgea_client-4.0.1.gem +0 -0
- data/pkg/budgea_client-4.0.2.gem +0 -0
- data/pkg/budgea_client-4.0.3.gem +0 -0
data/config.json
CHANGED
data/docs/Account.md
CHANGED
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
|
|
25
25
|
**name** | **String** | Name of the account | [optional]
|
26
26
|
**recipients** | [**Array<Recipient>**](Recipient.md) | | [optional]
|
27
27
|
**transactions** | [**Array<Transaction>**](Transaction.md) | | [optional]
|
28
|
+
**transfers** | [**Array<Transfer>**](Transfer.md) | | [optional]
|
28
29
|
**error** | **String** | If the last update has failed, the error code | [optional]
|
29
30
|
**usage** | **String** | Account usage | [optional]
|
30
31
|
**ownership** | **String** | Relationship between the credentials owner and the account | [optional]
|
data/docs/AdministrationApi.md
CHANGED
@@ -356,7 +356,7 @@ opts = {
|
|
356
356
|
generate_keys: true, # BOOLEAN | set a rsa key pair for the client, which make it possible to generate a jwt user token using this client. No effect if the client already has a set of keys(default: False)
|
357
357
|
name: 'name_example', # String | name of client
|
358
358
|
secret: true, # BOOLEAN | reset the secret
|
359
|
-
redirect_uris:
|
359
|
+
redirect_uris: 'redirect_uris_example', # String | list of allowed redirect uris
|
360
360
|
primary_color: 'primary_color_example', # String | hexadecimal code of the client primary color (e.g F45B9A)
|
361
361
|
secondary_color: 'secondary_color_example', # String | hexadecimal code of the client secondary color (e.g F45B9A)
|
362
362
|
description: 'description_example', # String | text to display as a default description
|
@@ -385,7 +385,7 @@ Name | Type | Description | Notes
|
|
385
385
|
**generate_keys** | **BOOLEAN**| set a rsa key pair for the client, which make it possible to generate a jwt user token using this client. No effect if the client already has a set of keys(default: False) | [optional]
|
386
386
|
**name** | **String**| name of client | [optional]
|
387
387
|
**secret** | **BOOLEAN**| reset the secret | [optional]
|
388
|
-
**redirect_uris** |
|
388
|
+
**redirect_uris** | **String**| list of allowed redirect uris | [optional]
|
389
389
|
**primary_color** | **String**| hexadecimal code of the client primary color (e.g F45B9A) | [optional]
|
390
390
|
**secondary_color** | **String**| hexadecimal code of the client secondary color (e.g F45B9A) | [optional]
|
391
391
|
**description** | **String**| text to display as a default description | [optional]
|
@@ -435,7 +435,7 @@ api_instance = BudgeaClient::AdministrationApi.new
|
|
435
435
|
opts = {
|
436
436
|
generate_keys: true, # BOOLEAN | if True, generate a rsa pair of keys so the client can be used to generate jwt user tokens (default: False)
|
437
437
|
name: 'name_example', # String | name of client
|
438
|
-
redirect_uris:
|
438
|
+
redirect_uris: 'redirect_uris_example', # String | list of allowed redirect uris
|
439
439
|
config: 'config_example', # String | custom config about the client
|
440
440
|
expand: 'expand_example' # String |
|
441
441
|
}
|
@@ -455,7 +455,7 @@ Name | Type | Description | Notes
|
|
455
455
|
------------- | ------------- | ------------- | -------------
|
456
456
|
**generate_keys** | **BOOLEAN**| if True, generate a rsa pair of keys so the client can be used to generate jwt user tokens (default: False) | [optional]
|
457
457
|
**name** | **String**| name of client | [optional]
|
458
|
-
**redirect_uris** |
|
458
|
+
**redirect_uris** | **String**| list of allowed redirect uris | [optional]
|
459
459
|
**config** | **String**| custom config about the client | [optional]
|
460
460
|
**expand** | **String**| | [optional]
|
461
461
|
|
@@ -840,7 +840,7 @@ api_instance = BudgeaClient::AdministrationApi.new
|
|
840
840
|
|
841
841
|
name = 'name_example' # String | name of merchant
|
842
842
|
|
843
|
-
redirect_uris =
|
843
|
+
redirect_uris = 'redirect_uris_example' # String | list of allowed redirect uris
|
844
844
|
|
845
845
|
iban = 'iban_example' # String | payments initiated by this merchant will be done to this IBAN
|
846
846
|
|
@@ -862,7 +862,7 @@ end
|
|
862
862
|
Name | Type | Description | Notes
|
863
863
|
------------- | ------------- | ------------- | -------------
|
864
864
|
**name** | **String**| name of merchant |
|
865
|
-
**redirect_uris** |
|
865
|
+
**redirect_uris** | **String**| list of allowed redirect uris |
|
866
866
|
**iban** | **String**| payments initiated by this merchant will be done to this IBAN |
|
867
867
|
**expand** | **String**| | [optional]
|
868
868
|
|
@@ -2013,7 +2013,7 @@ opts = {
|
|
2013
2013
|
id_user: 56, # Integer | The user ID to associate with the webhook
|
2014
2014
|
id_service: 56, # Integer | The service ID to associate with the webhook
|
2015
2015
|
id_auth: 56, # Integer | The webhook authentication process to use
|
2016
|
-
url:
|
2016
|
+
url: 'url_example', # String | The webhook callback url
|
2017
2017
|
event: 'event_example', # String | The webhook event
|
2018
2018
|
expand: 'expand_example' # String |
|
2019
2019
|
}
|
@@ -2036,7 +2036,7 @@ Name | Type | Description | Notes
|
|
2036
2036
|
**id_user** | **Integer**| The user ID to associate with the webhook | [optional]
|
2037
2037
|
**id_service** | **Integer**| The service ID to associate with the webhook | [optional]
|
2038
2038
|
**id_auth** | **Integer**| The webhook authentication process to use | [optional]
|
2039
|
-
**url** | **
|
2039
|
+
**url** | **String**| The webhook callback url | [optional]
|
2040
2040
|
**event** | **String**| The webhook event | [optional]
|
2041
2041
|
**expand** | **String**| | [optional]
|
2042
2042
|
|
@@ -2083,7 +2083,7 @@ opts = {
|
|
2083
2083
|
id_user: 56, # Integer | The user ID to associate with the webhook
|
2084
2084
|
id_service: 56, # Integer | The service ID to associate with the webhook
|
2085
2085
|
id_auth: 56, # Integer | The webhook authentication process to use
|
2086
|
-
url:
|
2086
|
+
url: 'url_example', # String | The webhook callback url
|
2087
2087
|
event: 'event_example', # String | The webhook event
|
2088
2088
|
expand: 'expand_example' # String |
|
2089
2089
|
}
|
@@ -2106,7 +2106,7 @@ Name | Type | Description | Notes
|
|
2106
2106
|
**id_user** | **Integer**| The user ID to associate with the webhook | [optional]
|
2107
2107
|
**id_service** | **Integer**| The service ID to associate with the webhook | [optional]
|
2108
2108
|
**id_auth** | **Integer**| The webhook authentication process to use | [optional]
|
2109
|
-
**url** | **
|
2109
|
+
**url** | **String**| The webhook callback url | [optional]
|
2110
2110
|
**event** | **String**| The webhook event | [optional]
|
2111
2111
|
**expand** | **String**| | [optional]
|
2112
2112
|
|
@@ -2150,7 +2150,7 @@ opts = {
|
|
2150
2150
|
id_user: 56, # Integer | The user ID to associate with the webhook
|
2151
2151
|
id_service: 56, # Integer | The service ID to associate with the webhook
|
2152
2152
|
id_auth: 'id_auth_example', # String | The webhook authentication process to use (its ID or its name)
|
2153
|
-
url:
|
2153
|
+
url: 'url_example', # String | The webhook callback url
|
2154
2154
|
event: 'event_example', # String | The webhook event
|
2155
2155
|
params: 'params_example', # String | The webhook parameters as an object with three keys: type, key and value
|
2156
2156
|
expand: 'expand_example' # String |
|
@@ -2172,7 +2172,7 @@ Name | Type | Description | Notes
|
|
2172
2172
|
**id_user** | **Integer**| The user ID to associate with the webhook | [optional]
|
2173
2173
|
**id_service** | **Integer**| The service ID to associate with the webhook | [optional]
|
2174
2174
|
**id_auth** | **String**| The webhook authentication process to use (its ID or its name) | [optional]
|
2175
|
-
**url** | **
|
2175
|
+
**url** | **String**| The webhook callback url | [optional]
|
2176
2176
|
**event** | **String**| The webhook event | [optional]
|
2177
2177
|
**params** | **String**| The webhook parameters as an object with three keys: type, key and value | [optional]
|
2178
2178
|
**expand** | **String**| | [optional]
|
data/docs/BanksApi.md
CHANGED
@@ -21,6 +21,10 @@ Method | HTTP request | Description
|
|
21
21
|
[**categorize_post**](BanksApi.md#categorize_post) | **POST** /categorize | categorize transactions without storing them
|
22
22
|
[**connections_get**](BanksApi.md#connections_get) | **GET** /connections | Get connections without a user
|
23
23
|
[**connections_id_connection_logs_get**](BanksApi.md#connections_id_connection_logs_get) | **GET** /connections/{id_connection}/logs | Get connection logs
|
24
|
+
[**connections_id_connection_sources_get**](BanksApi.md#connections_id_connection_sources_get) | **GET** /connections/{id_connection}/sources | Get connection sources
|
25
|
+
[**connections_id_connection_sources_id_source_delete**](BanksApi.md#connections_id_connection_sources_id_source_delete) | **DELETE** /connections/{id_connection}/sources/{id_source} | Disable a connection source
|
26
|
+
[**connections_id_connection_sources_id_source_post**](BanksApi.md#connections_id_connection_sources_id_source_post) | **POST** /connections/{id_connection}/sources/{id_source} | Enable connection source
|
27
|
+
[**connections_id_connection_sources_id_source_put**](BanksApi.md#connections_id_connection_sources_id_source_put) | **PUT** /connections/{id_connection}/sources/{id_source} | Enable connection source
|
24
28
|
[**connectors_get**](BanksApi.md#connectors_get) | **GET** /connectors | Get list of connectors
|
25
29
|
[**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.
|
26
30
|
[**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.
|
@@ -1143,8 +1147,249 @@ Name | Type | Description | Notes
|
|
1143
1147
|
|
1144
1148
|
|
1145
1149
|
|
1150
|
+
# **connections_id_connection_sources_get**
|
1151
|
+
> InlineResponse20016 connections_id_connection_sources_get(id_connection, opts)
|
1152
|
+
|
1153
|
+
Get connection sources
|
1154
|
+
|
1155
|
+
|
1156
|
+
|
1157
|
+
### Example
|
1158
|
+
```ruby
|
1159
|
+
# load the gem
|
1160
|
+
require 'budgea_client'
|
1161
|
+
# setup authorization
|
1162
|
+
BudgeaClient.configure do |config|
|
1163
|
+
# Configure API key authorization: api_key
|
1164
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1165
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1166
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
api_instance = BudgeaClient::BanksApi.new
|
1170
|
+
|
1171
|
+
id_connection = 56 # Integer |
|
1172
|
+
|
1173
|
+
opts = {
|
1174
|
+
expand: 'expand_example' # String |
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
begin
|
1178
|
+
#Get connection sources
|
1179
|
+
result = api_instance.connections_id_connection_sources_get(id_connection, opts)
|
1180
|
+
p result
|
1181
|
+
rescue BudgeaClient::ApiError => e
|
1182
|
+
puts "Exception when calling BanksApi->connections_id_connection_sources_get: #{e}"
|
1183
|
+
end
|
1184
|
+
```
|
1185
|
+
|
1186
|
+
### Parameters
|
1187
|
+
|
1188
|
+
Name | Type | Description | Notes
|
1189
|
+
------------- | ------------- | ------------- | -------------
|
1190
|
+
**id_connection** | **Integer**| |
|
1191
|
+
**expand** | **String**| | [optional]
|
1192
|
+
|
1193
|
+
### Return type
|
1194
|
+
|
1195
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
1196
|
+
|
1197
|
+
### Authorization
|
1198
|
+
|
1199
|
+
[api_key](../README.md#api_key)
|
1200
|
+
|
1201
|
+
### HTTP request headers
|
1202
|
+
|
1203
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
1204
|
+
- **Accept**: application/json
|
1205
|
+
|
1206
|
+
|
1207
|
+
|
1208
|
+
# **connections_id_connection_sources_id_source_delete**
|
1209
|
+
> ConnectionSource connections_id_connection_sources_id_source_delete(id_connection, id_source, opts)
|
1210
|
+
|
1211
|
+
Disable a connection source
|
1212
|
+
|
1213
|
+
This will make it so the specified source will not be synchronized anymore.<br><br>
|
1214
|
+
|
1215
|
+
### Example
|
1216
|
+
```ruby
|
1217
|
+
# load the gem
|
1218
|
+
require 'budgea_client'
|
1219
|
+
# setup authorization
|
1220
|
+
BudgeaClient.configure do |config|
|
1221
|
+
# Configure API key authorization: api_key
|
1222
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1223
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1224
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
api_instance = BudgeaClient::BanksApi.new
|
1228
|
+
|
1229
|
+
id_connection = 56 # Integer |
|
1230
|
+
|
1231
|
+
id_source = 56 # Integer |
|
1232
|
+
|
1233
|
+
opts = {
|
1234
|
+
expand: 'expand_example' # String |
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
begin
|
1238
|
+
#Disable a connection source
|
1239
|
+
result = api_instance.connections_id_connection_sources_id_source_delete(id_connection, id_source, opts)
|
1240
|
+
p result
|
1241
|
+
rescue BudgeaClient::ApiError => e
|
1242
|
+
puts "Exception when calling BanksApi->connections_id_connection_sources_id_source_delete: #{e}"
|
1243
|
+
end
|
1244
|
+
```
|
1245
|
+
|
1246
|
+
### Parameters
|
1247
|
+
|
1248
|
+
Name | Type | Description | Notes
|
1249
|
+
------------- | ------------- | ------------- | -------------
|
1250
|
+
**id_connection** | **Integer**| |
|
1251
|
+
**id_source** | **Integer**| |
|
1252
|
+
**expand** | **String**| | [optional]
|
1253
|
+
|
1254
|
+
### Return type
|
1255
|
+
|
1256
|
+
[**ConnectionSource**](ConnectionSource.md)
|
1257
|
+
|
1258
|
+
### Authorization
|
1259
|
+
|
1260
|
+
[api_key](../README.md#api_key)
|
1261
|
+
|
1262
|
+
### HTTP request headers
|
1263
|
+
|
1264
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
1265
|
+
- **Accept**: application/json
|
1266
|
+
|
1267
|
+
|
1268
|
+
|
1269
|
+
# **connections_id_connection_sources_id_source_post**
|
1270
|
+
> ConnectionSource connections_id_connection_sources_id_source_post(id_connection, id_source, opts)
|
1271
|
+
|
1272
|
+
Enable connection source
|
1273
|
+
|
1274
|
+
This will make it so the specified source will be able to be synchronized.<br><br>
|
1275
|
+
|
1276
|
+
### Example
|
1277
|
+
```ruby
|
1278
|
+
# load the gem
|
1279
|
+
require 'budgea_client'
|
1280
|
+
# setup authorization
|
1281
|
+
BudgeaClient.configure do |config|
|
1282
|
+
# Configure API key authorization: api_key
|
1283
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1284
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1285
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
api_instance = BudgeaClient::BanksApi.new
|
1289
|
+
|
1290
|
+
id_connection = 56 # Integer |
|
1291
|
+
|
1292
|
+
id_source = 56 # Integer |
|
1293
|
+
|
1294
|
+
opts = {
|
1295
|
+
expand: 'expand_example' # String |
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
begin
|
1299
|
+
#Enable connection source
|
1300
|
+
result = api_instance.connections_id_connection_sources_id_source_post(id_connection, id_source, opts)
|
1301
|
+
p result
|
1302
|
+
rescue BudgeaClient::ApiError => e
|
1303
|
+
puts "Exception when calling BanksApi->connections_id_connection_sources_id_source_post: #{e}"
|
1304
|
+
end
|
1305
|
+
```
|
1306
|
+
|
1307
|
+
### Parameters
|
1308
|
+
|
1309
|
+
Name | Type | Description | Notes
|
1310
|
+
------------- | ------------- | ------------- | -------------
|
1311
|
+
**id_connection** | **Integer**| |
|
1312
|
+
**id_source** | **Integer**| |
|
1313
|
+
**expand** | **String**| | [optional]
|
1314
|
+
|
1315
|
+
### Return type
|
1316
|
+
|
1317
|
+
[**ConnectionSource**](ConnectionSource.md)
|
1318
|
+
|
1319
|
+
### Authorization
|
1320
|
+
|
1321
|
+
[api_key](../README.md#api_key)
|
1322
|
+
|
1323
|
+
### HTTP request headers
|
1324
|
+
|
1325
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
1326
|
+
- **Accept**: application/json
|
1327
|
+
|
1328
|
+
|
1329
|
+
|
1330
|
+
# **connections_id_connection_sources_id_source_put**
|
1331
|
+
> ConnectionSource connections_id_connection_sources_id_source_put(id_connection, id_source, opts)
|
1332
|
+
|
1333
|
+
Enable connection source
|
1334
|
+
|
1335
|
+
This will make it so the specified source will be able to be synchronized.<br><br>
|
1336
|
+
|
1337
|
+
### Example
|
1338
|
+
```ruby
|
1339
|
+
# load the gem
|
1340
|
+
require 'budgea_client'
|
1341
|
+
# setup authorization
|
1342
|
+
BudgeaClient.configure do |config|
|
1343
|
+
# Configure API key authorization: api_key
|
1344
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
1345
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1346
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
api_instance = BudgeaClient::BanksApi.new
|
1350
|
+
|
1351
|
+
id_connection = 56 # Integer |
|
1352
|
+
|
1353
|
+
id_source = 56 # Integer |
|
1354
|
+
|
1355
|
+
opts = {
|
1356
|
+
expand: 'expand_example' # String |
|
1357
|
+
}
|
1358
|
+
|
1359
|
+
begin
|
1360
|
+
#Enable connection source
|
1361
|
+
result = api_instance.connections_id_connection_sources_id_source_put(id_connection, id_source, opts)
|
1362
|
+
p result
|
1363
|
+
rescue BudgeaClient::ApiError => e
|
1364
|
+
puts "Exception when calling BanksApi->connections_id_connection_sources_id_source_put: #{e}"
|
1365
|
+
end
|
1366
|
+
```
|
1367
|
+
|
1368
|
+
### Parameters
|
1369
|
+
|
1370
|
+
Name | Type | Description | Notes
|
1371
|
+
------------- | ------------- | ------------- | -------------
|
1372
|
+
**id_connection** | **Integer**| |
|
1373
|
+
**id_source** | **Integer**| |
|
1374
|
+
**expand** | **String**| | [optional]
|
1375
|
+
|
1376
|
+
### Return type
|
1377
|
+
|
1378
|
+
[**ConnectionSource**](ConnectionSource.md)
|
1379
|
+
|
1380
|
+
### Authorization
|
1381
|
+
|
1382
|
+
[api_key](../README.md#api_key)
|
1383
|
+
|
1384
|
+
### HTTP request headers
|
1385
|
+
|
1386
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
1387
|
+
- **Accept**: application/json
|
1388
|
+
|
1389
|
+
|
1390
|
+
|
1146
1391
|
# **connectors_get**
|
1147
|
-
>
|
1392
|
+
> InlineResponse20017 connectors_get(opts)
|
1148
1393
|
|
1149
1394
|
Get list of connectors
|
1150
1395
|
|
@@ -1185,7 +1430,7 @@ Name | Type | Description | Notes
|
|
1185
1430
|
|
1186
1431
|
### Return type
|
1187
1432
|
|
1188
|
-
[**
|
1433
|
+
[**InlineResponse20017**](InlineResponse20017.md)
|
1189
1434
|
|
1190
1435
|
### Authorization
|
1191
1436
|
|
@@ -2084,7 +2329,7 @@ Name | Type | Description | Notes
|
|
2084
2329
|
|
2085
2330
|
|
2086
2331
|
# **providers_get**
|
2087
|
-
>
|
2332
|
+
> InlineResponse20020 providers_get(opts)
|
2088
2333
|
|
2089
2334
|
Get list of connectors
|
2090
2335
|
|
@@ -2125,7 +2370,7 @@ Name | Type | Description | Notes
|
|
2125
2370
|
|
2126
2371
|
### Return type
|
2127
2372
|
|
2128
|
-
[**
|
2373
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
2129
2374
|
|
2130
2375
|
### Authorization
|
2131
2376
|
|
@@ -2608,7 +2853,7 @@ Name | Type | Description | Notes
|
|
2608
2853
|
|
2609
2854
|
|
2610
2855
|
# **users_id_user_accounts_get**
|
2611
|
-
>
|
2856
|
+
> InlineResponse20023 users_id_user_accounts_get(id_user, opts)
|
2612
2857
|
|
2613
2858
|
Get accounts list.
|
2614
2859
|
|
@@ -2652,7 +2897,7 @@ Name | Type | Description | Notes
|
|
2652
2897
|
|
2653
2898
|
### Return type
|
2654
2899
|
|
2655
|
-
[**
|
2900
|
+
[**InlineResponse20023**](InlineResponse20023.md)
|
2656
2901
|
|
2657
2902
|
### Authorization
|
2658
2903
|
|
@@ -2847,7 +3092,7 @@ nil (empty response body)
|
|
2847
3092
|
|
2848
3093
|
|
2849
3094
|
# **users_id_user_accounts_id_account_logs_get**
|
2850
|
-
>
|
3095
|
+
> InlineResponse20027 users_id_user_accounts_id_account_logs_get(id_user, id_account, opts)
|
2851
3096
|
|
2852
3097
|
Get accounts logs.
|
2853
3098
|
|
@@ -2902,7 +3147,7 @@ Name | Type | Description | Notes
|
|
2902
3147
|
|
2903
3148
|
### Return type
|
2904
3149
|
|
2905
|
-
[**
|
3150
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
2906
3151
|
|
2907
3152
|
### Authorization
|
2908
3153
|
|
@@ -2991,7 +3236,7 @@ Name | Type | Description | Notes
|
|
2991
3236
|
|
2992
3237
|
|
2993
3238
|
# **users_id_user_accounts_id_account_sources_get**
|
2994
|
-
>
|
3239
|
+
> InlineResponse20016 users_id_user_accounts_id_account_sources_get(id_user, id_account, opts)
|
2995
3240
|
|
2996
3241
|
Get account sources
|
2997
3242
|
|
@@ -3038,7 +3283,7 @@ Name | Type | Description | Notes
|
|
3038
3283
|
|
3039
3284
|
### Return type
|
3040
3285
|
|
3041
|
-
[**
|
3286
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
3042
3287
|
|
3043
3288
|
### Authorization
|
3044
3289
|
|
@@ -4607,7 +4852,7 @@ Name | Type | Description | Notes
|
|
4607
4852
|
|
4608
4853
|
|
4609
4854
|
# **users_id_user_connections_id_connection_accounts_get**
|
4610
|
-
>
|
4855
|
+
> InlineResponse20023 users_id_user_connections_id_connection_accounts_get(id_user, id_connection, opts)
|
4611
4856
|
|
4612
4857
|
Get accounts list.
|
4613
4858
|
|
@@ -4654,7 +4899,7 @@ Name | Type | Description | Notes
|
|
4654
4899
|
|
4655
4900
|
### Return type
|
4656
4901
|
|
4657
|
-
[**
|
4902
|
+
[**InlineResponse20023**](InlineResponse20023.md)
|
4658
4903
|
|
4659
4904
|
### Authorization
|
4660
4905
|
|
@@ -4858,7 +5103,7 @@ nil (empty response body)
|
|
4858
5103
|
|
4859
5104
|
|
4860
5105
|
# **users_id_user_connections_id_connection_accounts_id_account_logs_get**
|
4861
|
-
>
|
5106
|
+
> InlineResponse20027 users_id_user_connections_id_connection_accounts_id_account_logs_get(id_user, id_connection, id_account, opts)
|
4862
5107
|
|
4863
5108
|
Get accounts logs.
|
4864
5109
|
|
@@ -4916,7 +5161,7 @@ Name | Type | Description | Notes
|
|
4916
5161
|
|
4917
5162
|
### Return type
|
4918
5163
|
|
4919
|
-
[**
|
5164
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
4920
5165
|
|
4921
5166
|
### Authorization
|
4922
5167
|
|
@@ -5008,7 +5253,7 @@ Name | Type | Description | Notes
|
|
5008
5253
|
|
5009
5254
|
|
5010
5255
|
# **users_id_user_connections_id_connection_accounts_id_account_sources_get**
|
5011
|
-
>
|
5256
|
+
> InlineResponse20016 users_id_user_connections_id_connection_accounts_id_account_sources_get(id_user, id_connection, id_account, opts)
|
5012
5257
|
|
5013
5258
|
Get account sources
|
5014
5259
|
|
@@ -5058,7 +5303,7 @@ Name | Type | Description | Notes
|
|
5058
5303
|
|
5059
5304
|
### Return type
|
5060
5305
|
|
5061
|
-
[**
|
5306
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
5062
5307
|
|
5063
5308
|
### Authorization
|
5064
5309
|
|
@@ -6526,7 +6771,7 @@ Name | Type | Description | Notes
|
|
6526
6771
|
|
6527
6772
|
|
6528
6773
|
# **users_id_user_connections_id_connection_sources_get**
|
6529
|
-
>
|
6774
|
+
> InlineResponse20016 users_id_user_connections_id_connection_sources_get(id_user, id_connection, opts)
|
6530
6775
|
|
6531
6776
|
Get connection sources
|
6532
6777
|
|
@@ -6573,7 +6818,7 @@ Name | Type | Description | Notes
|
|
6573
6818
|
|
6574
6819
|
### Return type
|
6575
6820
|
|
6576
|
-
[**
|
6821
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
6577
6822
|
|
6578
6823
|
### Authorization
|
6579
6824
|
|