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/Pocket.md
CHANGED
|
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**value** | **Float** | Value of the pocket |
|
|
11
11
|
**quantity** | **Float** | Quantity of stocks | [optional] [default to 0.0]
|
|
12
12
|
**availability_date** | **Date** | Availability date of the pocket | [optional]
|
|
13
|
-
**condition** | **String** | Withdrawal condition of the pocket | [default to
|
|
13
|
+
**condition** | **String** | Withdrawal condition of the pocket | [default to 'inconnu']
|
|
14
14
|
**last_update** | **DateTime** | Last update of the pocket | [optional]
|
|
15
15
|
**deleted** | **DateTime** | If set, this pocket has been removed from the website | [optional]
|
|
16
16
|
|
data/docs/Profile.md
CHANGED
|
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
|
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**id** | **Integer** | |
|
|
7
7
|
**id_user** | **Integer** | |
|
|
8
|
-
**role** | **String** | | [default to
|
|
8
|
+
**role** | **String** | | [default to 'admin']
|
|
9
9
|
**email** | **String** | |
|
|
10
10
|
**statut** | **Integer** | |
|
|
11
11
|
**admin** | **BOOLEAN** | | [default to false]
|
data/docs/Project.md
CHANGED
|
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**target** | **Float** | |
|
|
11
11
|
**saved** | **Float** | | [default to 0.0]
|
|
12
12
|
**monthly_savings** | **Float** | |
|
|
13
|
-
**comment** | **String** | | [default to
|
|
13
|
+
**comment** | **String** | | [default to '']
|
|
14
14
|
**active** | **BOOLEAN** | | [default to true]
|
|
15
15
|
|
|
16
16
|
|
data/docs/ProvidersApi.md
CHANGED
|
@@ -5,27 +5,27 @@ All URIs are relative to *https://demo.biapi.pro/2.0/*
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
7
|
[**banks_get**](ProvidersApi.md#banks_get) | **GET** /banks | Get list of connectors
|
|
8
|
-
[**
|
|
9
|
-
[**
|
|
10
|
-
[**
|
|
8
|
+
[**banks_id_connector_logos_get**](ProvidersApi.md#banks_id_connector_logos_get) | **GET** /banks/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
9
|
+
[**banks_id_connector_logos_main_get**](ProvidersApi.md#banks_id_connector_logos_main_get) | **GET** /banks/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
10
|
+
[**banks_id_connector_logos_thumbnail_get**](ProvidersApi.md#banks_id_connector_logos_thumbnail_get) | **GET** /banks/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
11
11
|
[**connections_get**](ProvidersApi.md#connections_get) | **GET** /connections | Get connections without a user
|
|
12
12
|
[**connectors_get**](ProvidersApi.md#connectors_get) | **GET** /connectors | Get list of connectors
|
|
13
|
-
[**
|
|
14
|
-
[**
|
|
15
|
-
[**
|
|
16
|
-
[**
|
|
17
|
-
[**
|
|
18
|
-
[**
|
|
19
|
-
[**
|
|
13
|
+
[**connectors_id_connector_logos_get**](ProvidersApi.md#connectors_id_connector_logos_get) | **GET** /connectors/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
14
|
+
[**connectors_id_connector_logos_id_logo_delete**](ProvidersApi.md#connectors_id_connector_logos_id_logo_delete) | **DELETE** /connectors/{id_connector}/logos/{id_logo} | Delete a single Logo object.
|
|
15
|
+
[**connectors_id_connector_logos_id_logo_put**](ProvidersApi.md#connectors_id_connector_logos_id_logo_put) | **PUT** /connectors/{id_connector}/logos/{id_logo} | Create or Update a connector Logo.
|
|
16
|
+
[**connectors_id_connector_logos_main_get**](ProvidersApi.md#connectors_id_connector_logos_main_get) | **GET** /connectors/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
17
|
+
[**connectors_id_connector_logos_post**](ProvidersApi.md#connectors_id_connector_logos_post) | **POST** /connectors/{id_connector}/logos | Create a connector Logo
|
|
18
|
+
[**connectors_id_connector_logos_put**](ProvidersApi.md#connectors_id_connector_logos_put) | **PUT** /connectors/{id_connector}/logos | Create or Update a connector Logo
|
|
19
|
+
[**connectors_id_connector_logos_thumbnail_get**](ProvidersApi.md#connectors_id_connector_logos_thumbnail_get) | **GET** /connectors/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
20
20
|
[**connectors_post**](ProvidersApi.md#connectors_post) | **POST** /connectors | Request a new connector
|
|
21
21
|
[**documenttypes_get**](ProvidersApi.md#documenttypes_get) | **GET** /documenttypes | Get document types
|
|
22
22
|
[**documenttypes_id_documenttype_put**](ProvidersApi.md#documenttypes_id_documenttype_put) | **PUT** /documenttypes/{id_documenttype} | Edit a document type
|
|
23
23
|
[**logs_get**](ProvidersApi.md#logs_get) | **GET** /logs | Get connection logs
|
|
24
24
|
[**ocr_post**](ProvidersApi.md#ocr_post) | **POST** /ocr | Post an image with OCR
|
|
25
25
|
[**providers_get**](ProvidersApi.md#providers_get) | **GET** /providers | Get list of connectors
|
|
26
|
-
[**
|
|
27
|
-
[**
|
|
28
|
-
[**
|
|
26
|
+
[**providers_id_connector_logos_get**](ProvidersApi.md#providers_id_connector_logos_get) | **GET** /providers/{id_connector}/logos | Get all links to the files associated with this connector.
|
|
27
|
+
[**providers_id_connector_logos_main_get**](ProvidersApi.md#providers_id_connector_logos_main_get) | **GET** /providers/{id_connector}/logos/main | Get all links to the files associated with this connector.
|
|
28
|
+
[**providers_id_connector_logos_thumbnail_get**](ProvidersApi.md#providers_id_connector_logos_thumbnail_get) | **GET** /providers/{id_connector}/logos/thumbnail | Get all links to the files associated with this connector.
|
|
29
29
|
[**users_id_user_accounts_id_account_transactions_id_transaction_documents_delete**](ProvidersApi.md#users_id_user_accounts_id_account_transactions_id_transaction_documents_delete) | **DELETE** /users/{id_user}/accounts/{id_account}/transactions/{id_transaction}/documents | Delete documents
|
|
30
30
|
[**users_id_user_accounts_id_account_transactions_id_transaction_documents_get**](ProvidersApi.md#users_id_user_accounts_id_account_transactions_id_transaction_documents_get) | **GET** /users/{id_user}/accounts/{id_account}/transactions/{id_transaction}/documents | Get documents
|
|
31
31
|
[**users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_delete**](ProvidersApi.md#users_id_user_accounts_id_account_transactions_id_transaction_documents_id_document_delete) | **DELETE** /users/{id_user}/accounts/{id_account}/transactions/{id_transaction}/documents/{id_document} | Delete a document
|
|
@@ -115,7 +115,7 @@ Method | HTTP request | Description
|
|
|
115
115
|
|
|
116
116
|
|
|
117
117
|
# **banks_get**
|
|
118
|
-
>
|
|
118
|
+
> InlineResponse2008 banks_get(opts)
|
|
119
119
|
|
|
120
120
|
Get list of connectors
|
|
121
121
|
|
|
@@ -136,7 +136,7 @@ end
|
|
|
136
136
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
137
137
|
|
|
138
138
|
opts = {
|
|
139
|
-
expand:
|
|
139
|
+
expand: 'expand_example' # String |
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
begin
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
### Return type
|
|
158
158
|
|
|
159
|
-
[**
|
|
159
|
+
[**InlineResponse2008**](InlineResponse2008.md)
|
|
160
160
|
|
|
161
161
|
### Authorization
|
|
162
162
|
|
|
@@ -169,12 +169,12 @@ Name | Type | Description | Notes
|
|
|
169
169
|
|
|
170
170
|
|
|
171
171
|
|
|
172
|
-
# **
|
|
173
|
-
>
|
|
172
|
+
# **banks_id_connector_logos_get**
|
|
173
|
+
> InlineResponse20010 banks_id_connector_logos_get(id_connector, opts)
|
|
174
174
|
|
|
175
|
-
Get all links to the files associated with this
|
|
175
|
+
Get all links to the files associated with this connector.
|
|
176
176
|
|
|
177
|
-
This endpoint returns all links to files associated with this
|
|
177
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
178
178
|
|
|
179
179
|
### Example
|
|
180
180
|
```ruby
|
|
@@ -190,18 +190,18 @@ end
|
|
|
190
190
|
|
|
191
191
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
192
192
|
|
|
193
|
-
|
|
193
|
+
id_connector = 56 # Integer |
|
|
194
194
|
|
|
195
195
|
opts = {
|
|
196
|
-
expand:
|
|
196
|
+
expand: 'expand_example' # String |
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
begin
|
|
200
|
-
#Get all links to the files associated with this
|
|
201
|
-
result = api_instance.
|
|
200
|
+
#Get all links to the files associated with this connector.
|
|
201
|
+
result = api_instance.banks_id_connector_logos_get(id_connector, opts)
|
|
202
202
|
p result
|
|
203
203
|
rescue BudgeaClient::ApiError => e
|
|
204
|
-
puts "Exception when calling ProvidersApi->
|
|
204
|
+
puts "Exception when calling ProvidersApi->banks_id_connector_logos_get: #{e}"
|
|
205
205
|
end
|
|
206
206
|
```
|
|
207
207
|
|
|
@@ -209,12 +209,12 @@ end
|
|
|
209
209
|
|
|
210
210
|
Name | Type | Description | Notes
|
|
211
211
|
------------- | ------------- | ------------- | -------------
|
|
212
|
-
**
|
|
212
|
+
**id_connector** | **Integer**| |
|
|
213
213
|
**expand** | **String**| | [optional]
|
|
214
214
|
|
|
215
215
|
### Return type
|
|
216
216
|
|
|
217
|
-
[**
|
|
217
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
218
218
|
|
|
219
219
|
### Authorization
|
|
220
220
|
|
|
@@ -227,12 +227,12 @@ Name | Type | Description | Notes
|
|
|
227
227
|
|
|
228
228
|
|
|
229
229
|
|
|
230
|
-
# **
|
|
231
|
-
>
|
|
230
|
+
# **banks_id_connector_logos_main_get**
|
|
231
|
+
> InlineResponse20010 banks_id_connector_logos_main_get(id_connector, opts)
|
|
232
232
|
|
|
233
|
-
Get all links to the files associated with this
|
|
233
|
+
Get all links to the files associated with this connector.
|
|
234
234
|
|
|
235
|
-
This endpoint returns all links to files associated with this
|
|
235
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
236
236
|
|
|
237
237
|
### Example
|
|
238
238
|
```ruby
|
|
@@ -248,18 +248,18 @@ end
|
|
|
248
248
|
|
|
249
249
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
250
250
|
|
|
251
|
-
|
|
251
|
+
id_connector = 56 # Integer |
|
|
252
252
|
|
|
253
253
|
opts = {
|
|
254
|
-
expand:
|
|
254
|
+
expand: 'expand_example' # String |
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
begin
|
|
258
|
-
#Get all links to the files associated with this
|
|
259
|
-
result = api_instance.
|
|
258
|
+
#Get all links to the files associated with this connector.
|
|
259
|
+
result = api_instance.banks_id_connector_logos_main_get(id_connector, opts)
|
|
260
260
|
p result
|
|
261
261
|
rescue BudgeaClient::ApiError => e
|
|
262
|
-
puts "Exception when calling ProvidersApi->
|
|
262
|
+
puts "Exception when calling ProvidersApi->banks_id_connector_logos_main_get: #{e}"
|
|
263
263
|
end
|
|
264
264
|
```
|
|
265
265
|
|
|
@@ -267,12 +267,12 @@ end
|
|
|
267
267
|
|
|
268
268
|
Name | Type | Description | Notes
|
|
269
269
|
------------- | ------------- | ------------- | -------------
|
|
270
|
-
**
|
|
270
|
+
**id_connector** | **Integer**| |
|
|
271
271
|
**expand** | **String**| | [optional]
|
|
272
272
|
|
|
273
273
|
### Return type
|
|
274
274
|
|
|
275
|
-
[**
|
|
275
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
276
276
|
|
|
277
277
|
### Authorization
|
|
278
278
|
|
|
@@ -285,12 +285,12 @@ Name | Type | Description | Notes
|
|
|
285
285
|
|
|
286
286
|
|
|
287
287
|
|
|
288
|
-
# **
|
|
289
|
-
>
|
|
288
|
+
# **banks_id_connector_logos_thumbnail_get**
|
|
289
|
+
> InlineResponse20010 banks_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
290
290
|
|
|
291
|
-
Get all links to the files associated with this
|
|
291
|
+
Get all links to the files associated with this connector.
|
|
292
292
|
|
|
293
|
-
This endpoint returns all links to files associated with this
|
|
293
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
294
294
|
|
|
295
295
|
### Example
|
|
296
296
|
```ruby
|
|
@@ -306,18 +306,18 @@ end
|
|
|
306
306
|
|
|
307
307
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
308
308
|
|
|
309
|
-
|
|
309
|
+
id_connector = 56 # Integer |
|
|
310
310
|
|
|
311
311
|
opts = {
|
|
312
|
-
expand:
|
|
312
|
+
expand: 'expand_example' # String |
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
begin
|
|
316
|
-
#Get all links to the files associated with this
|
|
317
|
-
result = api_instance.
|
|
316
|
+
#Get all links to the files associated with this connector.
|
|
317
|
+
result = api_instance.banks_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
318
318
|
p result
|
|
319
319
|
rescue BudgeaClient::ApiError => e
|
|
320
|
-
puts "Exception when calling ProvidersApi->
|
|
320
|
+
puts "Exception when calling ProvidersApi->banks_id_connector_logos_thumbnail_get: #{e}"
|
|
321
321
|
end
|
|
322
322
|
```
|
|
323
323
|
|
|
@@ -325,12 +325,12 @@ end
|
|
|
325
325
|
|
|
326
326
|
Name | Type | Description | Notes
|
|
327
327
|
------------- | ------------- | ------------- | -------------
|
|
328
|
-
**
|
|
328
|
+
**id_connector** | **Integer**| |
|
|
329
329
|
**expand** | **String**| | [optional]
|
|
330
330
|
|
|
331
331
|
### Return type
|
|
332
332
|
|
|
333
|
-
[**
|
|
333
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
334
334
|
|
|
335
335
|
### Authorization
|
|
336
336
|
|
|
@@ -344,7 +344,7 @@ Name | Type | Description | Notes
|
|
|
344
344
|
|
|
345
345
|
|
|
346
346
|
# **connections_get**
|
|
347
|
-
>
|
|
347
|
+
> InlineResponse2009 connections_get(opts)
|
|
348
348
|
|
|
349
349
|
Get connections without a user
|
|
350
350
|
|
|
@@ -365,7 +365,7 @@ end
|
|
|
365
365
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
366
366
|
|
|
367
367
|
opts = {
|
|
368
|
-
expand:
|
|
368
|
+
expand: 'expand_example' # String |
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
begin
|
|
@@ -385,7 +385,7 @@ Name | Type | Description | Notes
|
|
|
385
385
|
|
|
386
386
|
### Return type
|
|
387
387
|
|
|
388
|
-
[**
|
|
388
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
389
389
|
|
|
390
390
|
### Authorization
|
|
391
391
|
|
|
@@ -399,7 +399,7 @@ Name | Type | Description | Notes
|
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
# **connectors_get**
|
|
402
|
-
>
|
|
402
|
+
> InlineResponse20013 connectors_get(opts)
|
|
403
403
|
|
|
404
404
|
Get list of connectors
|
|
405
405
|
|
|
@@ -420,7 +420,7 @@ end
|
|
|
420
420
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
421
421
|
|
|
422
422
|
opts = {
|
|
423
|
-
expand:
|
|
423
|
+
expand: 'expand_example' # String |
|
|
424
424
|
}
|
|
425
425
|
|
|
426
426
|
begin
|
|
@@ -440,7 +440,7 @@ Name | Type | Description | Notes
|
|
|
440
440
|
|
|
441
441
|
### Return type
|
|
442
442
|
|
|
443
|
-
[**
|
|
443
|
+
[**InlineResponse20013**](InlineResponse20013.md)
|
|
444
444
|
|
|
445
445
|
### Authorization
|
|
446
446
|
|
|
@@ -453,12 +453,12 @@ Name | Type | Description | Notes
|
|
|
453
453
|
|
|
454
454
|
|
|
455
455
|
|
|
456
|
-
# **
|
|
457
|
-
>
|
|
456
|
+
# **connectors_id_connector_logos_get**
|
|
457
|
+
> InlineResponse20010 connectors_id_connector_logos_get(id_connector, opts)
|
|
458
458
|
|
|
459
|
-
Get all links to the files associated with this
|
|
459
|
+
Get all links to the files associated with this connector.
|
|
460
460
|
|
|
461
|
-
This endpoint returns all links to files associated with this
|
|
461
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
462
462
|
|
|
463
463
|
### Example
|
|
464
464
|
```ruby
|
|
@@ -474,18 +474,18 @@ end
|
|
|
474
474
|
|
|
475
475
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
476
476
|
|
|
477
|
-
|
|
477
|
+
id_connector = 56 # Integer |
|
|
478
478
|
|
|
479
479
|
opts = {
|
|
480
|
-
expand:
|
|
480
|
+
expand: 'expand_example' # String |
|
|
481
481
|
}
|
|
482
482
|
|
|
483
483
|
begin
|
|
484
|
-
#Get all links to the files associated with this
|
|
485
|
-
result = api_instance.
|
|
484
|
+
#Get all links to the files associated with this connector.
|
|
485
|
+
result = api_instance.connectors_id_connector_logos_get(id_connector, opts)
|
|
486
486
|
p result
|
|
487
487
|
rescue BudgeaClient::ApiError => e
|
|
488
|
-
puts "Exception when calling ProvidersApi->
|
|
488
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_get: #{e}"
|
|
489
489
|
end
|
|
490
490
|
```
|
|
491
491
|
|
|
@@ -493,12 +493,12 @@ end
|
|
|
493
493
|
|
|
494
494
|
Name | Type | Description | Notes
|
|
495
495
|
------------- | ------------- | ------------- | -------------
|
|
496
|
-
**
|
|
496
|
+
**id_connector** | **Integer**| |
|
|
497
497
|
**expand** | **String**| | [optional]
|
|
498
498
|
|
|
499
499
|
### Return type
|
|
500
500
|
|
|
501
|
-
[**
|
|
501
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
502
502
|
|
|
503
503
|
### Authorization
|
|
504
504
|
|
|
@@ -511,8 +511,8 @@ Name | Type | Description | Notes
|
|
|
511
511
|
|
|
512
512
|
|
|
513
513
|
|
|
514
|
-
# **
|
|
515
|
-
> ConnectorLogo
|
|
514
|
+
# **connectors_id_connector_logos_id_logo_delete**
|
|
515
|
+
> ConnectorLogo connectors_id_connector_logos_id_logo_delete(id_connector, id_logo, opts)
|
|
516
516
|
|
|
517
517
|
Delete a single Logo object.
|
|
518
518
|
|
|
@@ -532,20 +532,20 @@ end
|
|
|
532
532
|
|
|
533
533
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
534
534
|
|
|
535
|
-
|
|
535
|
+
id_connector = 56 # Integer |
|
|
536
536
|
|
|
537
537
|
id_logo = 56 # Integer |
|
|
538
538
|
|
|
539
539
|
opts = {
|
|
540
|
-
expand:
|
|
540
|
+
expand: 'expand_example' # String |
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
begin
|
|
544
544
|
#Delete a single Logo object.
|
|
545
|
-
result = api_instance.
|
|
545
|
+
result = api_instance.connectors_id_connector_logos_id_logo_delete(id_connector, id_logo, opts)
|
|
546
546
|
p result
|
|
547
547
|
rescue BudgeaClient::ApiError => e
|
|
548
|
-
puts "Exception when calling ProvidersApi->
|
|
548
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_id_logo_delete: #{e}"
|
|
549
549
|
end
|
|
550
550
|
```
|
|
551
551
|
|
|
@@ -553,7 +553,7 @@ end
|
|
|
553
553
|
|
|
554
554
|
Name | Type | Description | Notes
|
|
555
555
|
------------- | ------------- | ------------- | -------------
|
|
556
|
-
**
|
|
556
|
+
**id_connector** | **Integer**| |
|
|
557
557
|
**id_logo** | **Integer**| |
|
|
558
558
|
**expand** | **String**| | [optional]
|
|
559
559
|
|
|
@@ -572,12 +572,12 @@ Name | Type | Description | Notes
|
|
|
572
572
|
|
|
573
573
|
|
|
574
574
|
|
|
575
|
-
# **
|
|
576
|
-
> ConnectorLogo
|
|
575
|
+
# **connectors_id_connector_logos_id_logo_put**
|
|
576
|
+
> ConnectorLogo connectors_id_connector_logos_id_logo_put(id_connector, id_logo, opts)
|
|
577
577
|
|
|
578
|
-
Create or Update a
|
|
578
|
+
Create or Update a connector Logo.
|
|
579
579
|
|
|
580
|
-
This endpoint creates or update a
|
|
580
|
+
This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
581
581
|
|
|
582
582
|
### Example
|
|
583
583
|
```ruby
|
|
@@ -593,20 +593,20 @@ end
|
|
|
593
593
|
|
|
594
594
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
595
595
|
|
|
596
|
-
|
|
596
|
+
id_connector = 56 # Integer |
|
|
597
597
|
|
|
598
598
|
id_logo = 56 # Integer |
|
|
599
599
|
|
|
600
600
|
opts = {
|
|
601
|
-
expand:
|
|
601
|
+
expand: 'expand_example' # String |
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
begin
|
|
605
|
-
#Create or Update a
|
|
606
|
-
result = api_instance.
|
|
605
|
+
#Create or Update a connector Logo.
|
|
606
|
+
result = api_instance.connectors_id_connector_logos_id_logo_put(id_connector, id_logo, opts)
|
|
607
607
|
p result
|
|
608
608
|
rescue BudgeaClient::ApiError => e
|
|
609
|
-
puts "Exception when calling ProvidersApi->
|
|
609
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_id_logo_put: #{e}"
|
|
610
610
|
end
|
|
611
611
|
```
|
|
612
612
|
|
|
@@ -614,7 +614,7 @@ end
|
|
|
614
614
|
|
|
615
615
|
Name | Type | Description | Notes
|
|
616
616
|
------------- | ------------- | ------------- | -------------
|
|
617
|
-
**
|
|
617
|
+
**id_connector** | **Integer**| |
|
|
618
618
|
**id_logo** | **Integer**| |
|
|
619
619
|
**expand** | **String**| | [optional]
|
|
620
620
|
|
|
@@ -633,12 +633,12 @@ Name | Type | Description | Notes
|
|
|
633
633
|
|
|
634
634
|
|
|
635
635
|
|
|
636
|
-
# **
|
|
637
|
-
>
|
|
636
|
+
# **connectors_id_connector_logos_main_get**
|
|
637
|
+
> InlineResponse20010 connectors_id_connector_logos_main_get(id_connector, opts)
|
|
638
638
|
|
|
639
|
-
Get all links to the files associated with this
|
|
639
|
+
Get all links to the files associated with this connector.
|
|
640
640
|
|
|
641
|
-
This endpoint returns all links to files associated with this
|
|
641
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
642
642
|
|
|
643
643
|
### Example
|
|
644
644
|
```ruby
|
|
@@ -654,18 +654,18 @@ end
|
|
|
654
654
|
|
|
655
655
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
656
656
|
|
|
657
|
-
|
|
657
|
+
id_connector = 56 # Integer |
|
|
658
658
|
|
|
659
659
|
opts = {
|
|
660
|
-
expand:
|
|
660
|
+
expand: 'expand_example' # String |
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
begin
|
|
664
|
-
#Get all links to the files associated with this
|
|
665
|
-
result = api_instance.
|
|
664
|
+
#Get all links to the files associated with this connector.
|
|
665
|
+
result = api_instance.connectors_id_connector_logos_main_get(id_connector, opts)
|
|
666
666
|
p result
|
|
667
667
|
rescue BudgeaClient::ApiError => e
|
|
668
|
-
puts "Exception when calling ProvidersApi->
|
|
668
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_main_get: #{e}"
|
|
669
669
|
end
|
|
670
670
|
```
|
|
671
671
|
|
|
@@ -673,12 +673,12 @@ end
|
|
|
673
673
|
|
|
674
674
|
Name | Type | Description | Notes
|
|
675
675
|
------------- | ------------- | ------------- | -------------
|
|
676
|
-
**
|
|
676
|
+
**id_connector** | **Integer**| |
|
|
677
677
|
**expand** | **String**| | [optional]
|
|
678
678
|
|
|
679
679
|
### Return type
|
|
680
680
|
|
|
681
|
-
[**
|
|
681
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
682
682
|
|
|
683
683
|
### Authorization
|
|
684
684
|
|
|
@@ -691,12 +691,12 @@ Name | Type | Description | Notes
|
|
|
691
691
|
|
|
692
692
|
|
|
693
693
|
|
|
694
|
-
# **
|
|
695
|
-
> ConnectorLogo
|
|
694
|
+
# **connectors_id_connector_logos_post**
|
|
695
|
+
> ConnectorLogo connectors_id_connector_logos_post(id_connector, opts)
|
|
696
696
|
|
|
697
|
-
Create a
|
|
697
|
+
Create a connector Logo
|
|
698
698
|
|
|
699
|
-
This endpoint creates a
|
|
699
|
+
This endpoint creates a connector logo. You can either pass a file to as a parameter to insert and link it with the connector or pass an id_file to link a connector with an existing file. Will fail if the file is already linked with that connector.<br><br>Form params: - id_file (integer): The id of the file to link with that connector. - img (string): Path to the image to link with that connector.<br><br>
|
|
700
700
|
|
|
701
701
|
### Example
|
|
702
702
|
```ruby
|
|
@@ -712,18 +712,18 @@ end
|
|
|
712
712
|
|
|
713
713
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
714
714
|
|
|
715
|
-
|
|
715
|
+
id_connector = 56 # Integer |
|
|
716
716
|
|
|
717
717
|
opts = {
|
|
718
|
-
expand:
|
|
718
|
+
expand: 'expand_example' # String |
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
begin
|
|
722
|
-
#Create a
|
|
723
|
-
result = api_instance.
|
|
722
|
+
#Create a connector Logo
|
|
723
|
+
result = api_instance.connectors_id_connector_logos_post(id_connector, opts)
|
|
724
724
|
p result
|
|
725
725
|
rescue BudgeaClient::ApiError => e
|
|
726
|
-
puts "Exception when calling ProvidersApi->
|
|
726
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_post: #{e}"
|
|
727
727
|
end
|
|
728
728
|
```
|
|
729
729
|
|
|
@@ -731,7 +731,7 @@ end
|
|
|
731
731
|
|
|
732
732
|
Name | Type | Description | Notes
|
|
733
733
|
------------- | ------------- | ------------- | -------------
|
|
734
|
-
**
|
|
734
|
+
**id_connector** | **Integer**| |
|
|
735
735
|
**expand** | **String**| | [optional]
|
|
736
736
|
|
|
737
737
|
### Return type
|
|
@@ -749,12 +749,12 @@ Name | Type | Description | Notes
|
|
|
749
749
|
|
|
750
750
|
|
|
751
751
|
|
|
752
|
-
# **
|
|
753
|
-
> ConnectorLogo
|
|
752
|
+
# **connectors_id_connector_logos_put**
|
|
753
|
+
> ConnectorLogo connectors_id_connector_logos_put(id_connector, opts)
|
|
754
754
|
|
|
755
|
-
Create or Update a
|
|
755
|
+
Create or Update a connector Logo
|
|
756
756
|
|
|
757
|
-
This endpoint creates or update a
|
|
757
|
+
This endpoint creates or update a connector logo. This logo is a mapping between a file (/file route) and a connector (/connectors route) or a provider (/providers route).<br><br>Form params: - id_file (integer): The id of the file to link with that connector.<br><br>
|
|
758
758
|
|
|
759
759
|
### Example
|
|
760
760
|
```ruby
|
|
@@ -770,18 +770,18 @@ end
|
|
|
770
770
|
|
|
771
771
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
772
772
|
|
|
773
|
-
|
|
773
|
+
id_connector = 56 # Integer |
|
|
774
774
|
|
|
775
775
|
opts = {
|
|
776
|
-
expand:
|
|
776
|
+
expand: 'expand_example' # String |
|
|
777
777
|
}
|
|
778
778
|
|
|
779
779
|
begin
|
|
780
|
-
#Create or Update a
|
|
781
|
-
result = api_instance.
|
|
780
|
+
#Create or Update a connector Logo
|
|
781
|
+
result = api_instance.connectors_id_connector_logos_put(id_connector, opts)
|
|
782
782
|
p result
|
|
783
783
|
rescue BudgeaClient::ApiError => e
|
|
784
|
-
puts "Exception when calling ProvidersApi->
|
|
784
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_put: #{e}"
|
|
785
785
|
end
|
|
786
786
|
```
|
|
787
787
|
|
|
@@ -789,7 +789,7 @@ end
|
|
|
789
789
|
|
|
790
790
|
Name | Type | Description | Notes
|
|
791
791
|
------------- | ------------- | ------------- | -------------
|
|
792
|
-
**
|
|
792
|
+
**id_connector** | **Integer**| |
|
|
793
793
|
**expand** | **String**| | [optional]
|
|
794
794
|
|
|
795
795
|
### Return type
|
|
@@ -807,12 +807,12 @@ Name | Type | Description | Notes
|
|
|
807
807
|
|
|
808
808
|
|
|
809
809
|
|
|
810
|
-
# **
|
|
811
|
-
>
|
|
810
|
+
# **connectors_id_connector_logos_thumbnail_get**
|
|
811
|
+
> InlineResponse20010 connectors_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
812
812
|
|
|
813
|
-
Get all links to the files associated with this
|
|
813
|
+
Get all links to the files associated with this connector.
|
|
814
814
|
|
|
815
|
-
This endpoint returns all links to files associated with this
|
|
815
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
816
816
|
|
|
817
817
|
### Example
|
|
818
818
|
```ruby
|
|
@@ -828,18 +828,18 @@ end
|
|
|
828
828
|
|
|
829
829
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
830
830
|
|
|
831
|
-
|
|
831
|
+
id_connector = 56 # Integer |
|
|
832
832
|
|
|
833
833
|
opts = {
|
|
834
|
-
expand:
|
|
834
|
+
expand: 'expand_example' # String |
|
|
835
835
|
}
|
|
836
836
|
|
|
837
837
|
begin
|
|
838
|
-
#Get all links to the files associated with this
|
|
839
|
-
result = api_instance.
|
|
838
|
+
#Get all links to the files associated with this connector.
|
|
839
|
+
result = api_instance.connectors_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
840
840
|
p result
|
|
841
841
|
rescue BudgeaClient::ApiError => e
|
|
842
|
-
puts "Exception when calling ProvidersApi->
|
|
842
|
+
puts "Exception when calling ProvidersApi->connectors_id_connector_logos_thumbnail_get: #{e}"
|
|
843
843
|
end
|
|
844
844
|
```
|
|
845
845
|
|
|
@@ -847,12 +847,12 @@ end
|
|
|
847
847
|
|
|
848
848
|
Name | Type | Description | Notes
|
|
849
849
|
------------- | ------------- | ------------- | -------------
|
|
850
|
-
**
|
|
850
|
+
**id_connector** | **Integer**| |
|
|
851
851
|
**expand** | **String**| | [optional]
|
|
852
852
|
|
|
853
853
|
### Return type
|
|
854
854
|
|
|
855
|
-
[**
|
|
855
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
856
856
|
|
|
857
857
|
### Authorization
|
|
858
858
|
|
|
@@ -866,7 +866,7 @@ Name | Type | Description | Notes
|
|
|
866
866
|
|
|
867
867
|
|
|
868
868
|
# **connectors_post**
|
|
869
|
-
>
|
|
869
|
+
> Connector connectors_post(name, login, password, opts)
|
|
870
870
|
|
|
871
871
|
Request a new connector
|
|
872
872
|
|
|
@@ -886,20 +886,20 @@ end
|
|
|
886
886
|
|
|
887
887
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
888
888
|
|
|
889
|
-
name =
|
|
889
|
+
name = 'name_example' # String | Name of the bank or provider
|
|
890
890
|
|
|
891
|
-
login =
|
|
891
|
+
login = 'login_example' # String | Users login
|
|
892
892
|
|
|
893
|
-
password =
|
|
893
|
+
password = 'password_example' # String | Users password
|
|
894
894
|
|
|
895
895
|
opts = {
|
|
896
|
-
api:
|
|
897
|
-
url:
|
|
898
|
-
email:
|
|
899
|
-
types:
|
|
900
|
-
comment:
|
|
896
|
+
api: 'api_example', # String | Name of the API
|
|
897
|
+
url: 'url_example', # String | Url of the bank
|
|
898
|
+
email: 'email_example', # String | Email of the user
|
|
899
|
+
types: 'types_example', # String | Type of connector, eg. banks or providers
|
|
900
|
+
comment: 'comment_example', # String | Optionnal comment
|
|
901
901
|
sendmail: true, # BOOLEAN | if set, send an email to user
|
|
902
|
-
expand:
|
|
902
|
+
expand: 'expand_example' # String |
|
|
903
903
|
}
|
|
904
904
|
|
|
905
905
|
begin
|
|
@@ -928,7 +928,7 @@ Name | Type | Description | Notes
|
|
|
928
928
|
|
|
929
929
|
### Return type
|
|
930
930
|
|
|
931
|
-
[**
|
|
931
|
+
[**Connector**](Connector.md)
|
|
932
932
|
|
|
933
933
|
### Authorization
|
|
934
934
|
|
|
@@ -936,13 +936,13 @@ Name | Type | Description | Notes
|
|
|
936
936
|
|
|
937
937
|
### HTTP request headers
|
|
938
938
|
|
|
939
|
-
- **Content-Type**:
|
|
939
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
940
940
|
- **Accept**: application/json
|
|
941
941
|
|
|
942
942
|
|
|
943
943
|
|
|
944
944
|
# **documenttypes_get**
|
|
945
|
-
>
|
|
945
|
+
> InlineResponse20014 documenttypes_get(opts)
|
|
946
946
|
|
|
947
947
|
Get document types
|
|
948
948
|
|
|
@@ -963,7 +963,7 @@ end
|
|
|
963
963
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
964
964
|
|
|
965
965
|
opts = {
|
|
966
|
-
expand:
|
|
966
|
+
expand: 'expand_example' # String |
|
|
967
967
|
}
|
|
968
968
|
|
|
969
969
|
begin
|
|
@@ -983,7 +983,7 @@ Name | Type | Description | Notes
|
|
|
983
983
|
|
|
984
984
|
### Return type
|
|
985
985
|
|
|
986
|
-
[**
|
|
986
|
+
[**InlineResponse20014**](InlineResponse20014.md)
|
|
987
987
|
|
|
988
988
|
### Authorization
|
|
989
989
|
|
|
@@ -1019,12 +1019,12 @@ api_instance = BudgeaClient::ProvidersApi.new
|
|
|
1019
1019
|
|
|
1020
1020
|
id_documenttype = 56 # Integer |
|
|
1021
1021
|
|
|
1022
|
-
name =
|
|
1022
|
+
name = 'name_example' # String | Displayed name of document type
|
|
1023
1023
|
|
|
1024
1024
|
attacheable = 56 # Integer | If true, documents of this type can be attached to a transaction, and have amount related meta-data
|
|
1025
1025
|
|
|
1026
1026
|
opts = {
|
|
1027
|
-
expand:
|
|
1027
|
+
expand: 'expand_example' # String |
|
|
1028
1028
|
}
|
|
1029
1029
|
|
|
1030
1030
|
begin
|
|
@@ -1061,7 +1061,7 @@ Name | Type | Description | Notes
|
|
|
1061
1061
|
|
|
1062
1062
|
|
|
1063
1063
|
# **logs_get**
|
|
1064
|
-
>
|
|
1064
|
+
> InlineResponse20016 logs_get(opts)
|
|
1065
1065
|
|
|
1066
1066
|
Get connection logs
|
|
1067
1067
|
|
|
@@ -1084,15 +1084,15 @@ api_instance = BudgeaClient::ProvidersApi.new
|
|
|
1084
1084
|
opts = {
|
|
1085
1085
|
limit: 56, # Integer | limit number of results
|
|
1086
1086
|
offset: 56, # Integer | offset of first result
|
|
1087
|
-
min_date: Date.parse(
|
|
1088
|
-
max_date: Date.parse(
|
|
1087
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
1088
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
1089
1089
|
state: 56, # Integer | state of user
|
|
1090
|
-
period:
|
|
1090
|
+
period: 'period_example', # String | period to group logs
|
|
1091
1091
|
id_user: 56, # Integer | ID of a user
|
|
1092
1092
|
id_connection: 56, # Integer | ID of a connection
|
|
1093
|
-
|
|
1094
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
1095
|
-
expand:
|
|
1093
|
+
id_connector: 56, # Integer | ID of a connector
|
|
1094
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
1095
|
+
expand: 'expand_example' # String |
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
1098
|
begin
|
|
@@ -1116,13 +1116,13 @@ Name | Type | Description | Notes
|
|
|
1116
1116
|
**period** | **String**| period to group logs | [optional]
|
|
1117
1117
|
**id_user** | **Integer**| ID of a user | [optional]
|
|
1118
1118
|
**id_connection** | **Integer**| ID of a connection | [optional]
|
|
1119
|
-
**
|
|
1120
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
1119
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
1120
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
1121
1121
|
**expand** | **String**| | [optional]
|
|
1122
1122
|
|
|
1123
1123
|
### Return type
|
|
1124
1124
|
|
|
1125
|
-
[**
|
|
1125
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
1126
1126
|
|
|
1127
1127
|
### Authorization
|
|
1128
1128
|
|
|
@@ -1156,11 +1156,11 @@ end
|
|
|
1156
1156
|
|
|
1157
1157
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1158
1158
|
|
|
1159
|
-
file = File.new(
|
|
1159
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
1160
1160
|
|
|
1161
1161
|
opts = {
|
|
1162
1162
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
1163
|
-
name:
|
|
1163
|
+
name: 'name_example' # String | Name of the document
|
|
1164
1164
|
}
|
|
1165
1165
|
|
|
1166
1166
|
begin
|
|
@@ -1195,7 +1195,7 @@ nil (empty response body)
|
|
|
1195
1195
|
|
|
1196
1196
|
|
|
1197
1197
|
# **providers_get**
|
|
1198
|
-
>
|
|
1198
|
+
> InlineResponse20017 providers_get(opts)
|
|
1199
1199
|
|
|
1200
1200
|
Get list of connectors
|
|
1201
1201
|
|
|
@@ -1216,7 +1216,7 @@ end
|
|
|
1216
1216
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1217
1217
|
|
|
1218
1218
|
opts = {
|
|
1219
|
-
expand:
|
|
1219
|
+
expand: 'expand_example' # String |
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
1222
|
begin
|
|
@@ -1236,7 +1236,7 @@ Name | Type | Description | Notes
|
|
|
1236
1236
|
|
|
1237
1237
|
### Return type
|
|
1238
1238
|
|
|
1239
|
-
[**
|
|
1239
|
+
[**InlineResponse20017**](InlineResponse20017.md)
|
|
1240
1240
|
|
|
1241
1241
|
### Authorization
|
|
1242
1242
|
|
|
@@ -1249,12 +1249,12 @@ Name | Type | Description | Notes
|
|
|
1249
1249
|
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
-
# **
|
|
1253
|
-
>
|
|
1252
|
+
# **providers_id_connector_logos_get**
|
|
1253
|
+
> InlineResponse20010 providers_id_connector_logos_get(id_connector, opts)
|
|
1254
1254
|
|
|
1255
|
-
Get all links to the files associated with this
|
|
1255
|
+
Get all links to the files associated with this connector.
|
|
1256
1256
|
|
|
1257
|
-
This endpoint returns all links to files associated with this
|
|
1257
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1258
1258
|
|
|
1259
1259
|
### Example
|
|
1260
1260
|
```ruby
|
|
@@ -1270,18 +1270,18 @@ end
|
|
|
1270
1270
|
|
|
1271
1271
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1272
1272
|
|
|
1273
|
-
|
|
1273
|
+
id_connector = 56 # Integer |
|
|
1274
1274
|
|
|
1275
1275
|
opts = {
|
|
1276
|
-
expand:
|
|
1276
|
+
expand: 'expand_example' # String |
|
|
1277
1277
|
}
|
|
1278
1278
|
|
|
1279
1279
|
begin
|
|
1280
|
-
#Get all links to the files associated with this
|
|
1281
|
-
result = api_instance.
|
|
1280
|
+
#Get all links to the files associated with this connector.
|
|
1281
|
+
result = api_instance.providers_id_connector_logos_get(id_connector, opts)
|
|
1282
1282
|
p result
|
|
1283
1283
|
rescue BudgeaClient::ApiError => e
|
|
1284
|
-
puts "Exception when calling ProvidersApi->
|
|
1284
|
+
puts "Exception when calling ProvidersApi->providers_id_connector_logos_get: #{e}"
|
|
1285
1285
|
end
|
|
1286
1286
|
```
|
|
1287
1287
|
|
|
@@ -1289,12 +1289,12 @@ end
|
|
|
1289
1289
|
|
|
1290
1290
|
Name | Type | Description | Notes
|
|
1291
1291
|
------------- | ------------- | ------------- | -------------
|
|
1292
|
-
**
|
|
1292
|
+
**id_connector** | **Integer**| |
|
|
1293
1293
|
**expand** | **String**| | [optional]
|
|
1294
1294
|
|
|
1295
1295
|
### Return type
|
|
1296
1296
|
|
|
1297
|
-
[**
|
|
1297
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1298
1298
|
|
|
1299
1299
|
### Authorization
|
|
1300
1300
|
|
|
@@ -1307,12 +1307,12 @@ Name | Type | Description | Notes
|
|
|
1307
1307
|
|
|
1308
1308
|
|
|
1309
1309
|
|
|
1310
|
-
# **
|
|
1311
|
-
>
|
|
1310
|
+
# **providers_id_connector_logos_main_get**
|
|
1311
|
+
> InlineResponse20010 providers_id_connector_logos_main_get(id_connector, opts)
|
|
1312
1312
|
|
|
1313
|
-
Get all links to the files associated with this
|
|
1313
|
+
Get all links to the files associated with this connector.
|
|
1314
1314
|
|
|
1315
|
-
This endpoint returns all links to files associated with this
|
|
1315
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1316
1316
|
|
|
1317
1317
|
### Example
|
|
1318
1318
|
```ruby
|
|
@@ -1328,18 +1328,18 @@ end
|
|
|
1328
1328
|
|
|
1329
1329
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1330
1330
|
|
|
1331
|
-
|
|
1331
|
+
id_connector = 56 # Integer |
|
|
1332
1332
|
|
|
1333
1333
|
opts = {
|
|
1334
|
-
expand:
|
|
1334
|
+
expand: 'expand_example' # String |
|
|
1335
1335
|
}
|
|
1336
1336
|
|
|
1337
1337
|
begin
|
|
1338
|
-
#Get all links to the files associated with this
|
|
1339
|
-
result = api_instance.
|
|
1338
|
+
#Get all links to the files associated with this connector.
|
|
1339
|
+
result = api_instance.providers_id_connector_logos_main_get(id_connector, opts)
|
|
1340
1340
|
p result
|
|
1341
1341
|
rescue BudgeaClient::ApiError => e
|
|
1342
|
-
puts "Exception when calling ProvidersApi->
|
|
1342
|
+
puts "Exception when calling ProvidersApi->providers_id_connector_logos_main_get: #{e}"
|
|
1343
1343
|
end
|
|
1344
1344
|
```
|
|
1345
1345
|
|
|
@@ -1347,12 +1347,12 @@ end
|
|
|
1347
1347
|
|
|
1348
1348
|
Name | Type | Description | Notes
|
|
1349
1349
|
------------- | ------------- | ------------- | -------------
|
|
1350
|
-
**
|
|
1350
|
+
**id_connector** | **Integer**| |
|
|
1351
1351
|
**expand** | **String**| | [optional]
|
|
1352
1352
|
|
|
1353
1353
|
### Return type
|
|
1354
1354
|
|
|
1355
|
-
[**
|
|
1355
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1356
1356
|
|
|
1357
1357
|
### Authorization
|
|
1358
1358
|
|
|
@@ -1365,12 +1365,12 @@ Name | Type | Description | Notes
|
|
|
1365
1365
|
|
|
1366
1366
|
|
|
1367
1367
|
|
|
1368
|
-
# **
|
|
1369
|
-
>
|
|
1368
|
+
# **providers_id_connector_logos_thumbnail_get**
|
|
1369
|
+
> InlineResponse20010 providers_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1370
1370
|
|
|
1371
|
-
Get all links to the files associated with this
|
|
1371
|
+
Get all links to the files associated with this connector.
|
|
1372
1372
|
|
|
1373
|
-
This endpoint returns all links to files associated with this
|
|
1373
|
+
This endpoint returns all links to files associated with this connector.<br><br>
|
|
1374
1374
|
|
|
1375
1375
|
### Example
|
|
1376
1376
|
```ruby
|
|
@@ -1386,18 +1386,18 @@ end
|
|
|
1386
1386
|
|
|
1387
1387
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1388
1388
|
|
|
1389
|
-
|
|
1389
|
+
id_connector = 56 # Integer |
|
|
1390
1390
|
|
|
1391
1391
|
opts = {
|
|
1392
|
-
expand:
|
|
1392
|
+
expand: 'expand_example' # String |
|
|
1393
1393
|
}
|
|
1394
1394
|
|
|
1395
1395
|
begin
|
|
1396
|
-
#Get all links to the files associated with this
|
|
1397
|
-
result = api_instance.
|
|
1396
|
+
#Get all links to the files associated with this connector.
|
|
1397
|
+
result = api_instance.providers_id_connector_logos_thumbnail_get(id_connector, opts)
|
|
1398
1398
|
p result
|
|
1399
1399
|
rescue BudgeaClient::ApiError => e
|
|
1400
|
-
puts "Exception when calling ProvidersApi->
|
|
1400
|
+
puts "Exception when calling ProvidersApi->providers_id_connector_logos_thumbnail_get: #{e}"
|
|
1401
1401
|
end
|
|
1402
1402
|
```
|
|
1403
1403
|
|
|
@@ -1405,12 +1405,12 @@ end
|
|
|
1405
1405
|
|
|
1406
1406
|
Name | Type | Description | Notes
|
|
1407
1407
|
------------- | ------------- | ------------- | -------------
|
|
1408
|
-
**
|
|
1408
|
+
**id_connector** | **Integer**| |
|
|
1409
1409
|
**expand** | **String**| | [optional]
|
|
1410
1410
|
|
|
1411
1411
|
### Return type
|
|
1412
1412
|
|
|
1413
|
-
[**
|
|
1413
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
|
1414
1414
|
|
|
1415
1415
|
### Authorization
|
|
1416
1416
|
|
|
@@ -1444,14 +1444,14 @@ end
|
|
|
1444
1444
|
|
|
1445
1445
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1446
1446
|
|
|
1447
|
-
id_user =
|
|
1447
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1448
1448
|
|
|
1449
1449
|
id_account = 56 # Integer |
|
|
1450
1450
|
|
|
1451
1451
|
id_transaction = 56 # Integer |
|
|
1452
1452
|
|
|
1453
1453
|
opts = {
|
|
1454
|
-
expand:
|
|
1454
|
+
expand: 'expand_example' # String |
|
|
1455
1455
|
}
|
|
1456
1456
|
|
|
1457
1457
|
begin
|
|
@@ -1488,7 +1488,7 @@ Name | Type | Description | Notes
|
|
|
1488
1488
|
|
|
1489
1489
|
|
|
1490
1490
|
# **users_id_user_accounts_id_account_transactions_id_transaction_documents_get**
|
|
1491
|
-
>
|
|
1491
|
+
> InlineResponse20028 users_id_user_accounts_id_account_transactions_id_transaction_documents_get(id_user, id_account, id_transaction, opts)
|
|
1492
1492
|
|
|
1493
1493
|
Get documents
|
|
1494
1494
|
|
|
@@ -1508,7 +1508,7 @@ end
|
|
|
1508
1508
|
|
|
1509
1509
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1510
1510
|
|
|
1511
|
-
id_user =
|
|
1511
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1512
1512
|
|
|
1513
1513
|
id_account = 56 # Integer |
|
|
1514
1514
|
|
|
@@ -1517,14 +1517,14 @@ id_transaction = 56 # Integer |
|
|
|
1517
1517
|
opts = {
|
|
1518
1518
|
limit: 56, # Integer | limit number of results
|
|
1519
1519
|
offset: 56, # Integer | offset of first result
|
|
1520
|
-
min_date: Date.parse(
|
|
1521
|
-
max_date: Date.parse(
|
|
1520
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
1521
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
1522
1522
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
1523
|
-
max_amount: 3.4, # Float |
|
|
1523
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
1524
1524
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
1525
|
-
max_timestamp: 3.4, # Float |
|
|
1525
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
1526
1526
|
id_type: 56, # Integer | filter with a document type
|
|
1527
|
-
expand:
|
|
1527
|
+
expand: 'expand_example' # String |
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
1530
|
begin
|
|
@@ -1548,15 +1548,15 @@ Name | Type | Description | Notes
|
|
|
1548
1548
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
1549
1549
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
1550
1550
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
1551
|
-
**max_amount** | **Float**|
|
|
1551
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
1552
1552
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
1553
|
-
**max_timestamp** | **Float**|
|
|
1553
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
1554
1554
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
1555
1555
|
**expand** | **String**| | [optional]
|
|
1556
1556
|
|
|
1557
1557
|
### Return type
|
|
1558
1558
|
|
|
1559
|
-
[**
|
|
1559
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
1560
1560
|
|
|
1561
1561
|
### Authorization
|
|
1562
1562
|
|
|
@@ -1590,7 +1590,7 @@ end
|
|
|
1590
1590
|
|
|
1591
1591
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1592
1592
|
|
|
1593
|
-
id_user =
|
|
1593
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1594
1594
|
|
|
1595
1595
|
id_account = 56 # Integer |
|
|
1596
1596
|
|
|
@@ -1599,7 +1599,7 @@ id_transaction = 56 # Integer |
|
|
|
1599
1599
|
id_document = 56 # Integer |
|
|
1600
1600
|
|
|
1601
1601
|
opts = {
|
|
1602
|
-
expand:
|
|
1602
|
+
expand: 'expand_example' # String |
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
1605
|
begin
|
|
@@ -1657,7 +1657,7 @@ end
|
|
|
1657
1657
|
|
|
1658
1658
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1659
1659
|
|
|
1660
|
-
id_user =
|
|
1660
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1661
1661
|
|
|
1662
1662
|
id_account = 56 # Integer |
|
|
1663
1663
|
|
|
@@ -1668,16 +1668,16 @@ id_document = 56 # Integer |
|
|
|
1668
1668
|
opts = {
|
|
1669
1669
|
id_type: 56, # Integer | Type of this document
|
|
1670
1670
|
id_category: 56, # Integer | Related category
|
|
1671
|
-
date: Date.parse(
|
|
1672
|
-
duedate: Date.parse(
|
|
1671
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
1672
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
1673
1673
|
total_amount: 3.4, # Float | Taxed amount
|
|
1674
1674
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
1675
1675
|
vat: 3.4, # Float | VAT amount
|
|
1676
1676
|
income: 56, # Integer | Is an income or an outcome
|
|
1677
1677
|
readonly: 56, # Integer | Is this file readonly
|
|
1678
|
-
file: File.new(
|
|
1679
|
-
name:
|
|
1680
|
-
expand:
|
|
1678
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1679
|
+
name: 'name_example', # String | Name of the document
|
|
1680
|
+
expand: 'expand_example' # String |
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
1683
|
begin
|
|
@@ -1746,15 +1746,15 @@ end
|
|
|
1746
1746
|
|
|
1747
1747
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1748
1748
|
|
|
1749
|
-
id_user =
|
|
1749
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1750
1750
|
|
|
1751
1751
|
id_account = 56 # Integer |
|
|
1752
1752
|
|
|
1753
1753
|
id_transaction = 56 # Integer |
|
|
1754
1754
|
|
|
1755
|
-
date = Date.parse(
|
|
1755
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
1756
1756
|
|
|
1757
|
-
duedate = Date.parse(
|
|
1757
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
1758
1758
|
|
|
1759
1759
|
opts = {
|
|
1760
1760
|
id_type: 56, # Integer | Type of this document
|
|
@@ -1764,10 +1764,10 @@ opts = {
|
|
|
1764
1764
|
vat: 3.4, # Float | VAT amount
|
|
1765
1765
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
1766
1766
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
1767
|
-
file: File.new(
|
|
1767
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1768
1768
|
id_ocr: 56, # Integer | Related OCR process
|
|
1769
|
-
name:
|
|
1770
|
-
expand:
|
|
1769
|
+
name: 'name_example', # String | Name of the document
|
|
1770
|
+
expand: 'expand_example' # String |
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
1773
|
begin
|
|
@@ -1836,7 +1836,7 @@ end
|
|
|
1836
1836
|
|
|
1837
1837
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1838
1838
|
|
|
1839
|
-
id_user =
|
|
1839
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1840
1840
|
|
|
1841
1841
|
id_account = 56 # Integer |
|
|
1842
1842
|
|
|
@@ -1845,7 +1845,7 @@ id_transaction = 56 # Integer |
|
|
|
1845
1845
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
1846
1846
|
|
|
1847
1847
|
opts = {
|
|
1848
|
-
expand:
|
|
1848
|
+
expand: 'expand_example' # String |
|
|
1849
1849
|
}
|
|
1850
1850
|
|
|
1851
1851
|
begin
|
|
@@ -1903,14 +1903,14 @@ end
|
|
|
1903
1903
|
|
|
1904
1904
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1905
1905
|
|
|
1906
|
-
id_user =
|
|
1906
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1907
1907
|
|
|
1908
1908
|
id_account = 56 # Integer |
|
|
1909
1909
|
|
|
1910
1910
|
id_transactions_cluster = 56 # Integer |
|
|
1911
1911
|
|
|
1912
1912
|
opts = {
|
|
1913
|
-
expand:
|
|
1913
|
+
expand: 'expand_example' # String |
|
|
1914
1914
|
}
|
|
1915
1915
|
|
|
1916
1916
|
begin
|
|
@@ -1947,7 +1947,7 @@ Name | Type | Description | Notes
|
|
|
1947
1947
|
|
|
1948
1948
|
|
|
1949
1949
|
# **users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get**
|
|
1950
|
-
>
|
|
1950
|
+
> InlineResponse20028 users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_account, id_transactions_cluster, opts)
|
|
1951
1951
|
|
|
1952
1952
|
Get documents
|
|
1953
1953
|
|
|
@@ -1967,7 +1967,7 @@ end
|
|
|
1967
1967
|
|
|
1968
1968
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
1969
1969
|
|
|
1970
|
-
id_user =
|
|
1970
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1971
1971
|
|
|
1972
1972
|
id_account = 56 # Integer |
|
|
1973
1973
|
|
|
@@ -1976,14 +1976,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
1976
1976
|
opts = {
|
|
1977
1977
|
limit: 56, # Integer | limit number of results
|
|
1978
1978
|
offset: 56, # Integer | offset of first result
|
|
1979
|
-
min_date: Date.parse(
|
|
1980
|
-
max_date: Date.parse(
|
|
1979
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
1980
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
1981
1981
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
1982
|
-
max_amount: 3.4, # Float |
|
|
1982
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
1983
1983
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
1984
|
-
max_timestamp: 3.4, # Float |
|
|
1984
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
1985
1985
|
id_type: 56, # Integer | filter with a document type
|
|
1986
|
-
expand:
|
|
1986
|
+
expand: 'expand_example' # String |
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
1989
1989
|
begin
|
|
@@ -2007,15 +2007,15 @@ Name | Type | Description | Notes
|
|
|
2007
2007
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
2008
2008
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
2009
2009
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
2010
|
-
**max_amount** | **Float**|
|
|
2010
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
2011
2011
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
2012
|
-
**max_timestamp** | **Float**|
|
|
2012
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
2013
2013
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
2014
2014
|
**expand** | **String**| | [optional]
|
|
2015
2015
|
|
|
2016
2016
|
### Return type
|
|
2017
2017
|
|
|
2018
|
-
[**
|
|
2018
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
2019
2019
|
|
|
2020
2020
|
### Authorization
|
|
2021
2021
|
|
|
@@ -2049,7 +2049,7 @@ end
|
|
|
2049
2049
|
|
|
2050
2050
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2051
2051
|
|
|
2052
|
-
id_user =
|
|
2052
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2053
2053
|
|
|
2054
2054
|
id_account = 56 # Integer |
|
|
2055
2055
|
|
|
@@ -2058,7 +2058,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
2058
2058
|
id_document = 56 # Integer |
|
|
2059
2059
|
|
|
2060
2060
|
opts = {
|
|
2061
|
-
expand:
|
|
2061
|
+
expand: 'expand_example' # String |
|
|
2062
2062
|
}
|
|
2063
2063
|
|
|
2064
2064
|
begin
|
|
@@ -2116,7 +2116,7 @@ end
|
|
|
2116
2116
|
|
|
2117
2117
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2118
2118
|
|
|
2119
|
-
id_user =
|
|
2119
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2120
2120
|
|
|
2121
2121
|
id_account = 56 # Integer |
|
|
2122
2122
|
|
|
@@ -2127,16 +2127,16 @@ id_document = 56 # Integer |
|
|
|
2127
2127
|
opts = {
|
|
2128
2128
|
id_type: 56, # Integer | Type of this document
|
|
2129
2129
|
id_category: 56, # Integer | Related category
|
|
2130
|
-
date: Date.parse(
|
|
2131
|
-
duedate: Date.parse(
|
|
2130
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
2131
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
2132
2132
|
total_amount: 3.4, # Float | Taxed amount
|
|
2133
2133
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
2134
2134
|
vat: 3.4, # Float | VAT amount
|
|
2135
2135
|
income: 56, # Integer | Is an income or an outcome
|
|
2136
2136
|
readonly: 56, # Integer | Is this file readonly
|
|
2137
|
-
file: File.new(
|
|
2138
|
-
name:
|
|
2139
|
-
expand:
|
|
2137
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2138
|
+
name: 'name_example', # String | Name of the document
|
|
2139
|
+
expand: 'expand_example' # String |
|
|
2140
2140
|
}
|
|
2141
2141
|
|
|
2142
2142
|
begin
|
|
@@ -2205,15 +2205,15 @@ end
|
|
|
2205
2205
|
|
|
2206
2206
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2207
2207
|
|
|
2208
|
-
id_user =
|
|
2208
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2209
2209
|
|
|
2210
2210
|
id_account = 56 # Integer |
|
|
2211
2211
|
|
|
2212
2212
|
id_transactions_cluster = 56 # Integer |
|
|
2213
2213
|
|
|
2214
|
-
date = Date.parse(
|
|
2214
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
2215
2215
|
|
|
2216
|
-
duedate = Date.parse(
|
|
2216
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
2217
2217
|
|
|
2218
2218
|
opts = {
|
|
2219
2219
|
id_type: 56, # Integer | Type of this document
|
|
@@ -2223,10 +2223,10 @@ opts = {
|
|
|
2223
2223
|
vat: 3.4, # Float | VAT amount
|
|
2224
2224
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
2225
2225
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
2226
|
-
file: File.new(
|
|
2226
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2227
2227
|
id_ocr: 56, # Integer | Related OCR process
|
|
2228
|
-
name:
|
|
2229
|
-
expand:
|
|
2228
|
+
name: 'name_example', # String | Name of the document
|
|
2229
|
+
expand: 'expand_example' # String |
|
|
2230
2230
|
}
|
|
2231
2231
|
|
|
2232
2232
|
begin
|
|
@@ -2295,7 +2295,7 @@ end
|
|
|
2295
2295
|
|
|
2296
2296
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2297
2297
|
|
|
2298
|
-
id_user =
|
|
2298
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2299
2299
|
|
|
2300
2300
|
id_account = 56 # Integer |
|
|
2301
2301
|
|
|
@@ -2304,7 +2304,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
2304
2304
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
2305
2305
|
|
|
2306
2306
|
opts = {
|
|
2307
|
-
expand:
|
|
2307
|
+
expand: 'expand_example' # String |
|
|
2308
2308
|
}
|
|
2309
2309
|
|
|
2310
2310
|
begin
|
|
@@ -2362,10 +2362,10 @@ end
|
|
|
2362
2362
|
|
|
2363
2363
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2364
2364
|
|
|
2365
|
-
id_user =
|
|
2365
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2366
2366
|
|
|
2367
2367
|
opts = {
|
|
2368
|
-
expand:
|
|
2368
|
+
expand: 'expand_example' # String |
|
|
2369
2369
|
}
|
|
2370
2370
|
|
|
2371
2371
|
begin
|
|
@@ -2400,7 +2400,7 @@ Name | Type | Description | Notes
|
|
|
2400
2400
|
|
|
2401
2401
|
|
|
2402
2402
|
# **users_id_user_connections_get**
|
|
2403
|
-
>
|
|
2403
|
+
> InlineResponse2009 users_id_user_connections_get(id_user, opts)
|
|
2404
2404
|
|
|
2405
2405
|
Get connections
|
|
2406
2406
|
|
|
@@ -2420,10 +2420,10 @@ end
|
|
|
2420
2420
|
|
|
2421
2421
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2422
2422
|
|
|
2423
|
-
id_user =
|
|
2423
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2424
2424
|
|
|
2425
2425
|
opts = {
|
|
2426
|
-
expand:
|
|
2426
|
+
expand: 'expand_example' # String |
|
|
2427
2427
|
}
|
|
2428
2428
|
|
|
2429
2429
|
begin
|
|
@@ -2444,7 +2444,7 @@ Name | Type | Description | Notes
|
|
|
2444
2444
|
|
|
2445
2445
|
### Return type
|
|
2446
2446
|
|
|
2447
|
-
[**
|
|
2447
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
2448
2448
|
|
|
2449
2449
|
### Authorization
|
|
2450
2450
|
|
|
@@ -2478,7 +2478,7 @@ end
|
|
|
2478
2478
|
|
|
2479
2479
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2480
2480
|
|
|
2481
|
-
id_user =
|
|
2481
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2482
2482
|
|
|
2483
2483
|
id_connection = 56 # Integer |
|
|
2484
2484
|
|
|
@@ -2487,7 +2487,7 @@ id_account = 56 # Integer |
|
|
|
2487
2487
|
id_transaction = 56 # Integer |
|
|
2488
2488
|
|
|
2489
2489
|
opts = {
|
|
2490
|
-
expand:
|
|
2490
|
+
expand: 'expand_example' # String |
|
|
2491
2491
|
}
|
|
2492
2492
|
|
|
2493
2493
|
begin
|
|
@@ -2525,7 +2525,7 @@ Name | Type | Description | Notes
|
|
|
2525
2525
|
|
|
2526
2526
|
|
|
2527
2527
|
# **users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get**
|
|
2528
|
-
>
|
|
2528
|
+
> InlineResponse20028 users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get(id_user, id_connection, id_account, id_transaction, opts)
|
|
2529
2529
|
|
|
2530
2530
|
Get documents
|
|
2531
2531
|
|
|
@@ -2545,7 +2545,7 @@ end
|
|
|
2545
2545
|
|
|
2546
2546
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2547
2547
|
|
|
2548
|
-
id_user =
|
|
2548
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2549
2549
|
|
|
2550
2550
|
id_connection = 56 # Integer |
|
|
2551
2551
|
|
|
@@ -2556,14 +2556,14 @@ id_transaction = 56 # Integer |
|
|
|
2556
2556
|
opts = {
|
|
2557
2557
|
limit: 56, # Integer | limit number of results
|
|
2558
2558
|
offset: 56, # Integer | offset of first result
|
|
2559
|
-
min_date: Date.parse(
|
|
2560
|
-
max_date: Date.parse(
|
|
2559
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
2560
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
2561
2561
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
2562
|
-
max_amount: 3.4, # Float |
|
|
2562
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
2563
2563
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
2564
|
-
max_timestamp: 3.4, # Float |
|
|
2564
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
2565
2565
|
id_type: 56, # Integer | filter with a document type
|
|
2566
|
-
expand:
|
|
2566
|
+
expand: 'expand_example' # String |
|
|
2567
2567
|
}
|
|
2568
2568
|
|
|
2569
2569
|
begin
|
|
@@ -2588,15 +2588,15 @@ Name | Type | Description | Notes
|
|
|
2588
2588
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
2589
2589
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
2590
2590
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
2591
|
-
**max_amount** | **Float**|
|
|
2591
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
2592
2592
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
2593
|
-
**max_timestamp** | **Float**|
|
|
2593
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
2594
2594
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
2595
2595
|
**expand** | **String**| | [optional]
|
|
2596
2596
|
|
|
2597
2597
|
### Return type
|
|
2598
2598
|
|
|
2599
|
-
[**
|
|
2599
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
2600
2600
|
|
|
2601
2601
|
### Authorization
|
|
2602
2602
|
|
|
@@ -2630,7 +2630,7 @@ end
|
|
|
2630
2630
|
|
|
2631
2631
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2632
2632
|
|
|
2633
|
-
id_user =
|
|
2633
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2634
2634
|
|
|
2635
2635
|
id_connection = 56 # Integer |
|
|
2636
2636
|
|
|
@@ -2641,7 +2641,7 @@ id_transaction = 56 # Integer |
|
|
|
2641
2641
|
id_document = 56 # Integer |
|
|
2642
2642
|
|
|
2643
2643
|
opts = {
|
|
2644
|
-
expand:
|
|
2644
|
+
expand: 'expand_example' # String |
|
|
2645
2645
|
}
|
|
2646
2646
|
|
|
2647
2647
|
begin
|
|
@@ -2700,7 +2700,7 @@ end
|
|
|
2700
2700
|
|
|
2701
2701
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2702
2702
|
|
|
2703
|
-
id_user =
|
|
2703
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2704
2704
|
|
|
2705
2705
|
id_connection = 56 # Integer |
|
|
2706
2706
|
|
|
@@ -2713,16 +2713,16 @@ id_document = 56 # Integer |
|
|
|
2713
2713
|
opts = {
|
|
2714
2714
|
id_type: 56, # Integer | Type of this document
|
|
2715
2715
|
id_category: 56, # Integer | Related category
|
|
2716
|
-
date: Date.parse(
|
|
2717
|
-
duedate: Date.parse(
|
|
2716
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
2717
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
2718
2718
|
total_amount: 3.4, # Float | Taxed amount
|
|
2719
2719
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
2720
2720
|
vat: 3.4, # Float | VAT amount
|
|
2721
2721
|
income: 56, # Integer | Is an income or an outcome
|
|
2722
2722
|
readonly: 56, # Integer | Is this file readonly
|
|
2723
|
-
file: File.new(
|
|
2724
|
-
name:
|
|
2725
|
-
expand:
|
|
2723
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2724
|
+
name: 'name_example', # String | Name of the document
|
|
2725
|
+
expand: 'expand_example' # String |
|
|
2726
2726
|
}
|
|
2727
2727
|
|
|
2728
2728
|
begin
|
|
@@ -2792,7 +2792,7 @@ end
|
|
|
2792
2792
|
|
|
2793
2793
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2794
2794
|
|
|
2795
|
-
id_user =
|
|
2795
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2796
2796
|
|
|
2797
2797
|
id_connection = 56 # Integer |
|
|
2798
2798
|
|
|
@@ -2800,9 +2800,9 @@ id_account = 56 # Integer |
|
|
|
2800
2800
|
|
|
2801
2801
|
id_transaction = 56 # Integer |
|
|
2802
2802
|
|
|
2803
|
-
date = Date.parse(
|
|
2803
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
2804
2804
|
|
|
2805
|
-
duedate = Date.parse(
|
|
2805
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
2806
2806
|
|
|
2807
2807
|
opts = {
|
|
2808
2808
|
id_type: 56, # Integer | Type of this document
|
|
@@ -2812,10 +2812,10 @@ opts = {
|
|
|
2812
2812
|
vat: 3.4, # Float | VAT amount
|
|
2813
2813
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
2814
2814
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
2815
|
-
file: File.new(
|
|
2815
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2816
2816
|
id_ocr: 56, # Integer | Related OCR process
|
|
2817
|
-
name:
|
|
2818
|
-
expand:
|
|
2817
|
+
name: 'name_example', # String | Name of the document
|
|
2818
|
+
expand: 'expand_example' # String |
|
|
2819
2819
|
}
|
|
2820
2820
|
|
|
2821
2821
|
begin
|
|
@@ -2885,7 +2885,7 @@ end
|
|
|
2885
2885
|
|
|
2886
2886
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2887
2887
|
|
|
2888
|
-
id_user =
|
|
2888
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2889
2889
|
|
|
2890
2890
|
id_connection = 56 # Integer |
|
|
2891
2891
|
|
|
@@ -2896,7 +2896,7 @@ id_transaction = 56 # Integer |
|
|
|
2896
2896
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
2897
2897
|
|
|
2898
2898
|
opts = {
|
|
2899
|
-
expand:
|
|
2899
|
+
expand: 'expand_example' # String |
|
|
2900
2900
|
}
|
|
2901
2901
|
|
|
2902
2902
|
begin
|
|
@@ -2955,7 +2955,7 @@ end
|
|
|
2955
2955
|
|
|
2956
2956
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
2957
2957
|
|
|
2958
|
-
id_user =
|
|
2958
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2959
2959
|
|
|
2960
2960
|
id_connection = 56 # Integer |
|
|
2961
2961
|
|
|
@@ -2964,7 +2964,7 @@ id_account = 56 # Integer |
|
|
|
2964
2964
|
id_transactions_cluster = 56 # Integer |
|
|
2965
2965
|
|
|
2966
2966
|
opts = {
|
|
2967
|
-
expand:
|
|
2967
|
+
expand: 'expand_example' # String |
|
|
2968
2968
|
}
|
|
2969
2969
|
|
|
2970
2970
|
begin
|
|
@@ -3002,7 +3002,7 @@ Name | Type | Description | Notes
|
|
|
3002
3002
|
|
|
3003
3003
|
|
|
3004
3004
|
# **users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get**
|
|
3005
|
-
>
|
|
3005
|
+
> InlineResponse20028 users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_connection, id_account, id_transactions_cluster, opts)
|
|
3006
3006
|
|
|
3007
3007
|
Get documents
|
|
3008
3008
|
|
|
@@ -3022,7 +3022,7 @@ end
|
|
|
3022
3022
|
|
|
3023
3023
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3024
3024
|
|
|
3025
|
-
id_user =
|
|
3025
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3026
3026
|
|
|
3027
3027
|
id_connection = 56 # Integer |
|
|
3028
3028
|
|
|
@@ -3033,14 +3033,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3033
3033
|
opts = {
|
|
3034
3034
|
limit: 56, # Integer | limit number of results
|
|
3035
3035
|
offset: 56, # Integer | offset of first result
|
|
3036
|
-
min_date: Date.parse(
|
|
3037
|
-
max_date: Date.parse(
|
|
3036
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
3037
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
3038
3038
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
3039
|
-
max_amount: 3.4, # Float |
|
|
3039
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
3040
3040
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
3041
|
-
max_timestamp: 3.4, # Float |
|
|
3041
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
3042
3042
|
id_type: 56, # Integer | filter with a document type
|
|
3043
|
-
expand:
|
|
3043
|
+
expand: 'expand_example' # String |
|
|
3044
3044
|
}
|
|
3045
3045
|
|
|
3046
3046
|
begin
|
|
@@ -3065,15 +3065,15 @@ Name | Type | Description | Notes
|
|
|
3065
3065
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
3066
3066
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
3067
3067
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
3068
|
-
**max_amount** | **Float**|
|
|
3068
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
3069
3069
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
3070
|
-
**max_timestamp** | **Float**|
|
|
3070
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
3071
3071
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
3072
3072
|
**expand** | **String**| | [optional]
|
|
3073
3073
|
|
|
3074
3074
|
### Return type
|
|
3075
3075
|
|
|
3076
|
-
[**
|
|
3076
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
3077
3077
|
|
|
3078
3078
|
### Authorization
|
|
3079
3079
|
|
|
@@ -3107,7 +3107,7 @@ end
|
|
|
3107
3107
|
|
|
3108
3108
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3109
3109
|
|
|
3110
|
-
id_user =
|
|
3110
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3111
3111
|
|
|
3112
3112
|
id_connection = 56 # Integer |
|
|
3113
3113
|
|
|
@@ -3118,7 +3118,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3118
3118
|
id_document = 56 # Integer |
|
|
3119
3119
|
|
|
3120
3120
|
opts = {
|
|
3121
|
-
expand:
|
|
3121
|
+
expand: 'expand_example' # String |
|
|
3122
3122
|
}
|
|
3123
3123
|
|
|
3124
3124
|
begin
|
|
@@ -3177,7 +3177,7 @@ end
|
|
|
3177
3177
|
|
|
3178
3178
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3179
3179
|
|
|
3180
|
-
id_user =
|
|
3180
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3181
3181
|
|
|
3182
3182
|
id_connection = 56 # Integer |
|
|
3183
3183
|
|
|
@@ -3190,16 +3190,16 @@ id_document = 56 # Integer |
|
|
|
3190
3190
|
opts = {
|
|
3191
3191
|
id_type: 56, # Integer | Type of this document
|
|
3192
3192
|
id_category: 56, # Integer | Related category
|
|
3193
|
-
date: Date.parse(
|
|
3194
|
-
duedate: Date.parse(
|
|
3193
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
3194
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
3195
3195
|
total_amount: 3.4, # Float | Taxed amount
|
|
3196
3196
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
3197
3197
|
vat: 3.4, # Float | VAT amount
|
|
3198
3198
|
income: 56, # Integer | Is an income or an outcome
|
|
3199
3199
|
readonly: 56, # Integer | Is this file readonly
|
|
3200
|
-
file: File.new(
|
|
3201
|
-
name:
|
|
3202
|
-
expand:
|
|
3200
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3201
|
+
name: 'name_example', # String | Name of the document
|
|
3202
|
+
expand: 'expand_example' # String |
|
|
3203
3203
|
}
|
|
3204
3204
|
|
|
3205
3205
|
begin
|
|
@@ -3269,7 +3269,7 @@ end
|
|
|
3269
3269
|
|
|
3270
3270
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3271
3271
|
|
|
3272
|
-
id_user =
|
|
3272
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3273
3273
|
|
|
3274
3274
|
id_connection = 56 # Integer |
|
|
3275
3275
|
|
|
@@ -3277,9 +3277,9 @@ id_account = 56 # Integer |
|
|
|
3277
3277
|
|
|
3278
3278
|
id_transactions_cluster = 56 # Integer |
|
|
3279
3279
|
|
|
3280
|
-
date = Date.parse(
|
|
3280
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
3281
3281
|
|
|
3282
|
-
duedate = Date.parse(
|
|
3282
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
3283
3283
|
|
|
3284
3284
|
opts = {
|
|
3285
3285
|
id_type: 56, # Integer | Type of this document
|
|
@@ -3289,10 +3289,10 @@ opts = {
|
|
|
3289
3289
|
vat: 3.4, # Float | VAT amount
|
|
3290
3290
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
3291
3291
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
3292
|
-
file: File.new(
|
|
3292
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3293
3293
|
id_ocr: 56, # Integer | Related OCR process
|
|
3294
|
-
name:
|
|
3295
|
-
expand:
|
|
3294
|
+
name: 'name_example', # String | Name of the document
|
|
3295
|
+
expand: 'expand_example' # String |
|
|
3296
3296
|
}
|
|
3297
3297
|
|
|
3298
3298
|
begin
|
|
@@ -3362,7 +3362,7 @@ end
|
|
|
3362
3362
|
|
|
3363
3363
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3364
3364
|
|
|
3365
|
-
id_user =
|
|
3365
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3366
3366
|
|
|
3367
3367
|
id_connection = 56 # Integer |
|
|
3368
3368
|
|
|
@@ -3373,7 +3373,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3373
3373
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
3374
3374
|
|
|
3375
3375
|
opts = {
|
|
3376
|
-
expand:
|
|
3376
|
+
expand: 'expand_example' # String |
|
|
3377
3377
|
}
|
|
3378
3378
|
|
|
3379
3379
|
begin
|
|
@@ -3406,7 +3406,7 @@ Name | Type | Description | Notes
|
|
|
3406
3406
|
|
|
3407
3407
|
### HTTP request headers
|
|
3408
3408
|
|
|
3409
|
-
- **Content-Type**:
|
|
3409
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
3410
3410
|
- **Accept**: application/json
|
|
3411
3411
|
|
|
3412
3412
|
|
|
@@ -3432,12 +3432,12 @@ end
|
|
|
3432
3432
|
|
|
3433
3433
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3434
3434
|
|
|
3435
|
-
id_user =
|
|
3435
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3436
3436
|
|
|
3437
3437
|
id_connection = 56 # Integer |
|
|
3438
3438
|
|
|
3439
3439
|
opts = {
|
|
3440
|
-
expand:
|
|
3440
|
+
expand: 'expand_example' # String |
|
|
3441
3441
|
}
|
|
3442
3442
|
|
|
3443
3443
|
begin
|
|
@@ -3493,12 +3493,12 @@ end
|
|
|
3493
3493
|
|
|
3494
3494
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3495
3495
|
|
|
3496
|
-
id_user =
|
|
3496
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3497
3497
|
|
|
3498
3498
|
id_connection = 56 # Integer |
|
|
3499
3499
|
|
|
3500
3500
|
opts = {
|
|
3501
|
-
expand:
|
|
3501
|
+
expand: 'expand_example' # String |
|
|
3502
3502
|
}
|
|
3503
3503
|
|
|
3504
3504
|
begin
|
|
@@ -3534,7 +3534,7 @@ Name | Type | Description | Notes
|
|
|
3534
3534
|
|
|
3535
3535
|
|
|
3536
3536
|
# **users_id_user_connections_id_connection_documents_get**
|
|
3537
|
-
>
|
|
3537
|
+
> InlineResponse20028 users_id_user_connections_id_connection_documents_get(id_user, id_connection, opts)
|
|
3538
3538
|
|
|
3539
3539
|
Get documents
|
|
3540
3540
|
|
|
@@ -3554,21 +3554,21 @@ end
|
|
|
3554
3554
|
|
|
3555
3555
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3556
3556
|
|
|
3557
|
-
id_user =
|
|
3557
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3558
3558
|
|
|
3559
3559
|
id_connection = 56 # Integer |
|
|
3560
3560
|
|
|
3561
3561
|
opts = {
|
|
3562
3562
|
limit: 56, # Integer | limit number of results
|
|
3563
3563
|
offset: 56, # Integer | offset of first result
|
|
3564
|
-
min_date: Date.parse(
|
|
3565
|
-
max_date: Date.parse(
|
|
3564
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
3565
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
3566
3566
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
3567
|
-
max_amount: 3.4, # Float |
|
|
3567
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
3568
3568
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
3569
|
-
max_timestamp: 3.4, # Float |
|
|
3569
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
3570
3570
|
id_type: 56, # Integer | filter with a document type
|
|
3571
|
-
expand:
|
|
3571
|
+
expand: 'expand_example' # String |
|
|
3572
3572
|
}
|
|
3573
3573
|
|
|
3574
3574
|
begin
|
|
@@ -3591,15 +3591,15 @@ Name | Type | Description | Notes
|
|
|
3591
3591
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
3592
3592
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
3593
3593
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
3594
|
-
**max_amount** | **Float**|
|
|
3594
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
3595
3595
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
3596
|
-
**max_timestamp** | **Float**|
|
|
3596
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
3597
3597
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
3598
3598
|
**expand** | **String**| | [optional]
|
|
3599
3599
|
|
|
3600
3600
|
### Return type
|
|
3601
3601
|
|
|
3602
|
-
[**
|
|
3602
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
3603
3603
|
|
|
3604
3604
|
### Authorization
|
|
3605
3605
|
|
|
@@ -3633,14 +3633,14 @@ end
|
|
|
3633
3633
|
|
|
3634
3634
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3635
3635
|
|
|
3636
|
-
id_user =
|
|
3636
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3637
3637
|
|
|
3638
3638
|
id_connection = 56 # Integer |
|
|
3639
3639
|
|
|
3640
3640
|
id_document = 56 # Integer |
|
|
3641
3641
|
|
|
3642
3642
|
opts = {
|
|
3643
|
-
expand:
|
|
3643
|
+
expand: 'expand_example' # String |
|
|
3644
3644
|
}
|
|
3645
3645
|
|
|
3646
3646
|
begin
|
|
@@ -3697,7 +3697,7 @@ end
|
|
|
3697
3697
|
|
|
3698
3698
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3699
3699
|
|
|
3700
|
-
id_user =
|
|
3700
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3701
3701
|
|
|
3702
3702
|
id_connection = 56 # Integer |
|
|
3703
3703
|
|
|
@@ -3706,16 +3706,16 @@ id_document = 56 # Integer |
|
|
|
3706
3706
|
opts = {
|
|
3707
3707
|
id_type: 56, # Integer | Type of this document
|
|
3708
3708
|
id_category: 56, # Integer | Related category
|
|
3709
|
-
date: Date.parse(
|
|
3710
|
-
duedate: Date.parse(
|
|
3709
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
3710
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
3711
3711
|
total_amount: 3.4, # Float | Taxed amount
|
|
3712
3712
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
3713
3713
|
vat: 3.4, # Float | VAT amount
|
|
3714
3714
|
income: 56, # Integer | Is an income or an outcome
|
|
3715
3715
|
readonly: 56, # Integer | Is this file readonly
|
|
3716
|
-
file: File.new(
|
|
3717
|
-
name:
|
|
3718
|
-
expand:
|
|
3716
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3717
|
+
name: 'name_example', # String | Name of the document
|
|
3718
|
+
expand: 'expand_example' # String |
|
|
3719
3719
|
}
|
|
3720
3720
|
|
|
3721
3721
|
begin
|
|
@@ -3783,13 +3783,13 @@ end
|
|
|
3783
3783
|
|
|
3784
3784
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3785
3785
|
|
|
3786
|
-
id_user =
|
|
3786
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3787
3787
|
|
|
3788
3788
|
id_connection = 56 # Integer |
|
|
3789
3789
|
|
|
3790
|
-
date = Date.parse(
|
|
3790
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
3791
3791
|
|
|
3792
|
-
duedate = Date.parse(
|
|
3792
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
3793
3793
|
|
|
3794
3794
|
opts = {
|
|
3795
3795
|
id_type: 56, # Integer | Type of this document
|
|
@@ -3799,10 +3799,10 @@ opts = {
|
|
|
3799
3799
|
vat: 3.4, # Float | VAT amount
|
|
3800
3800
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
3801
3801
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
3802
|
-
file: File.new(
|
|
3802
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3803
3803
|
id_ocr: 56, # Integer | Related OCR process
|
|
3804
|
-
name:
|
|
3805
|
-
expand:
|
|
3804
|
+
name: 'name_example', # String | Name of the document
|
|
3805
|
+
expand: 'expand_example' # String |
|
|
3806
3806
|
}
|
|
3807
3807
|
|
|
3808
3808
|
begin
|
|
@@ -3870,14 +3870,14 @@ end
|
|
|
3870
3870
|
|
|
3871
3871
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3872
3872
|
|
|
3873
|
-
id_user =
|
|
3873
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3874
3874
|
|
|
3875
3875
|
id_connection = 56 # Integer |
|
|
3876
3876
|
|
|
3877
3877
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
3878
3878
|
|
|
3879
3879
|
opts = {
|
|
3880
|
-
expand:
|
|
3880
|
+
expand: 'expand_example' # String |
|
|
3881
3881
|
}
|
|
3882
3882
|
|
|
3883
3883
|
begin
|
|
@@ -3914,7 +3914,7 @@ Name | Type | Description | Notes
|
|
|
3914
3914
|
|
|
3915
3915
|
|
|
3916
3916
|
# **users_id_user_connections_id_connection_informations_get**
|
|
3917
|
-
>
|
|
3917
|
+
> InlineResponse2009 users_id_user_connections_id_connection_informations_get(id_user, id_connection, opts)
|
|
3918
3918
|
|
|
3919
3919
|
Get connection additionnal informations
|
|
3920
3920
|
|
|
@@ -3934,12 +3934,12 @@ end
|
|
|
3934
3934
|
|
|
3935
3935
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3936
3936
|
|
|
3937
|
-
id_user =
|
|
3937
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3938
3938
|
|
|
3939
3939
|
id_connection = 56 # Integer |
|
|
3940
3940
|
|
|
3941
3941
|
opts = {
|
|
3942
|
-
expand:
|
|
3942
|
+
expand: 'expand_example' # String |
|
|
3943
3943
|
}
|
|
3944
3944
|
|
|
3945
3945
|
begin
|
|
@@ -3961,7 +3961,7 @@ Name | Type | Description | Notes
|
|
|
3961
3961
|
|
|
3962
3962
|
### Return type
|
|
3963
3963
|
|
|
3964
|
-
[**
|
|
3964
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
|
3965
3965
|
|
|
3966
3966
|
### Authorization
|
|
3967
3967
|
|
|
@@ -3975,7 +3975,7 @@ Name | Type | Description | Notes
|
|
|
3975
3975
|
|
|
3976
3976
|
|
|
3977
3977
|
# **users_id_user_connections_id_connection_logs_get**
|
|
3978
|
-
>
|
|
3978
|
+
> InlineResponse20016 users_id_user_connections_id_connection_logs_get(id_user, id_connection, opts)
|
|
3979
3979
|
|
|
3980
3980
|
Get connection logs
|
|
3981
3981
|
|
|
@@ -3995,22 +3995,22 @@ end
|
|
|
3995
3995
|
|
|
3996
3996
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
3997
3997
|
|
|
3998
|
-
id_user =
|
|
3998
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3999
3999
|
|
|
4000
4000
|
id_connection = 56 # Integer |
|
|
4001
4001
|
|
|
4002
4002
|
opts = {
|
|
4003
4003
|
limit: 56, # Integer | limit number of results
|
|
4004
4004
|
offset: 56, # Integer | offset of first result
|
|
4005
|
-
min_date: Date.parse(
|
|
4006
|
-
max_date: Date.parse(
|
|
4005
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
4006
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
4007
4007
|
state: 56, # Integer | state of user
|
|
4008
|
-
period:
|
|
4008
|
+
period: 'period_example', # String | period to group logs
|
|
4009
4009
|
id_user2: 56, # Integer | ID of a user
|
|
4010
4010
|
id_connection2: 56, # Integer | ID of a connection
|
|
4011
|
-
|
|
4012
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
4013
|
-
expand:
|
|
4011
|
+
id_connector: 56, # Integer | ID of a connector
|
|
4012
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
4013
|
+
expand: 'expand_example' # String |
|
|
4014
4014
|
}
|
|
4015
4015
|
|
|
4016
4016
|
begin
|
|
@@ -4036,13 +4036,13 @@ Name | Type | Description | Notes
|
|
|
4036
4036
|
**period** | **String**| period to group logs | [optional]
|
|
4037
4037
|
**id_user2** | **Integer**| ID of a user | [optional]
|
|
4038
4038
|
**id_connection2** | **Integer**| ID of a connection | [optional]
|
|
4039
|
-
**
|
|
4040
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
4039
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
4040
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
4041
4041
|
**expand** | **String**| | [optional]
|
|
4042
4042
|
|
|
4043
4043
|
### Return type
|
|
4044
4044
|
|
|
4045
|
-
[**
|
|
4045
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
4046
4046
|
|
|
4047
4047
|
### Authorization
|
|
4048
4048
|
|
|
@@ -4076,16 +4076,16 @@ end
|
|
|
4076
4076
|
|
|
4077
4077
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4078
4078
|
|
|
4079
|
-
id_user =
|
|
4079
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4080
4080
|
|
|
4081
4081
|
id_connection = 56 # Integer |
|
|
4082
4082
|
|
|
4083
4083
|
opts = {
|
|
4084
4084
|
active: true, # BOOLEAN | Set if the connection synchronisation is active
|
|
4085
|
-
expire: DateTime.parse(
|
|
4086
|
-
login:
|
|
4087
|
-
password:
|
|
4088
|
-
expand:
|
|
4085
|
+
expire: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Set expiration of the connection to this date
|
|
4086
|
+
login: 'login_example', # String | Set login to this new login
|
|
4087
|
+
password: 'password_example', # String | Set password to this new password
|
|
4088
|
+
expand: 'expand_example' # String |
|
|
4089
4089
|
}
|
|
4090
4090
|
|
|
4091
4091
|
begin
|
|
@@ -4119,7 +4119,7 @@ Name | Type | Description | Notes
|
|
|
4119
4119
|
|
|
4120
4120
|
### HTTP request headers
|
|
4121
4121
|
|
|
4122
|
-
- **Content-Type**:
|
|
4122
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
4123
4123
|
- **Accept**: application/json
|
|
4124
4124
|
|
|
4125
4125
|
|
|
@@ -4145,12 +4145,12 @@ end
|
|
|
4145
4145
|
|
|
4146
4146
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4147
4147
|
|
|
4148
|
-
id_user =
|
|
4148
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4149
4149
|
|
|
4150
4150
|
id_connection = 56 # Integer |
|
|
4151
4151
|
|
|
4152
4152
|
opts = {
|
|
4153
|
-
expand:
|
|
4153
|
+
expand: 'expand_example' # String |
|
|
4154
4154
|
}
|
|
4155
4155
|
|
|
4156
4156
|
begin
|
|
@@ -4206,14 +4206,14 @@ end
|
|
|
4206
4206
|
|
|
4207
4207
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4208
4208
|
|
|
4209
|
-
id_user =
|
|
4209
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4210
4210
|
|
|
4211
4211
|
id_connection = 56 # Integer |
|
|
4212
4212
|
|
|
4213
4213
|
id_subscription = 56 # Integer |
|
|
4214
4214
|
|
|
4215
4215
|
opts = {
|
|
4216
|
-
expand:
|
|
4216
|
+
expand: 'expand_example' # String |
|
|
4217
4217
|
}
|
|
4218
4218
|
|
|
4219
4219
|
begin
|
|
@@ -4270,14 +4270,14 @@ end
|
|
|
4270
4270
|
|
|
4271
4271
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4272
4272
|
|
|
4273
|
-
id_user =
|
|
4273
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4274
4274
|
|
|
4275
4275
|
id_connection = 56 # Integer |
|
|
4276
4276
|
|
|
4277
4277
|
id_subscription = 56 # Integer |
|
|
4278
4278
|
|
|
4279
4279
|
opts = {
|
|
4280
|
-
expand:
|
|
4280
|
+
expand: 'expand_example' # String |
|
|
4281
4281
|
}
|
|
4282
4282
|
|
|
4283
4283
|
begin
|
|
@@ -4314,7 +4314,7 @@ Name | Type | Description | Notes
|
|
|
4314
4314
|
|
|
4315
4315
|
|
|
4316
4316
|
# **users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get**
|
|
4317
|
-
>
|
|
4317
|
+
> InlineResponse20028 users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get(id_user, id_connection, id_subscription, opts)
|
|
4318
4318
|
|
|
4319
4319
|
Get documents
|
|
4320
4320
|
|
|
@@ -4334,7 +4334,7 @@ end
|
|
|
4334
4334
|
|
|
4335
4335
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4336
4336
|
|
|
4337
|
-
id_user =
|
|
4337
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4338
4338
|
|
|
4339
4339
|
id_connection = 56 # Integer |
|
|
4340
4340
|
|
|
@@ -4343,14 +4343,14 @@ id_subscription = 56 # Integer |
|
|
|
4343
4343
|
opts = {
|
|
4344
4344
|
limit: 56, # Integer | limit number of results
|
|
4345
4345
|
offset: 56, # Integer | offset of first result
|
|
4346
|
-
min_date: Date.parse(
|
|
4347
|
-
max_date: Date.parse(
|
|
4346
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4347
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4348
4348
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
4349
|
-
max_amount: 3.4, # Float |
|
|
4349
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
4350
4350
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
4351
|
-
max_timestamp: 3.4, # Float |
|
|
4351
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
4352
4352
|
id_type: 56, # Integer | filter with a document type
|
|
4353
|
-
expand:
|
|
4353
|
+
expand: 'expand_example' # String |
|
|
4354
4354
|
}
|
|
4355
4355
|
|
|
4356
4356
|
begin
|
|
@@ -4374,15 +4374,15 @@ Name | Type | Description | Notes
|
|
|
4374
4374
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
4375
4375
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
4376
4376
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
4377
|
-
**max_amount** | **Float**|
|
|
4377
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
4378
4378
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
4379
|
-
**max_timestamp** | **Float**|
|
|
4379
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
4380
4380
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
4381
4381
|
**expand** | **String**| | [optional]
|
|
4382
4382
|
|
|
4383
4383
|
### Return type
|
|
4384
4384
|
|
|
4385
|
-
[**
|
|
4385
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
4386
4386
|
|
|
4387
4387
|
### Authorization
|
|
4388
4388
|
|
|
@@ -4416,7 +4416,7 @@ end
|
|
|
4416
4416
|
|
|
4417
4417
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4418
4418
|
|
|
4419
|
-
id_user =
|
|
4419
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4420
4420
|
|
|
4421
4421
|
id_connection = 56 # Integer |
|
|
4422
4422
|
|
|
@@ -4425,7 +4425,7 @@ id_subscription = 56 # Integer |
|
|
|
4425
4425
|
id_document = 56 # Integer |
|
|
4426
4426
|
|
|
4427
4427
|
opts = {
|
|
4428
|
-
expand:
|
|
4428
|
+
expand: 'expand_example' # String |
|
|
4429
4429
|
}
|
|
4430
4430
|
|
|
4431
4431
|
begin
|
|
@@ -4483,7 +4483,7 @@ end
|
|
|
4483
4483
|
|
|
4484
4484
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4485
4485
|
|
|
4486
|
-
id_user =
|
|
4486
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4487
4487
|
|
|
4488
4488
|
id_connection = 56 # Integer |
|
|
4489
4489
|
|
|
@@ -4494,16 +4494,16 @@ id_document = 56 # Integer |
|
|
|
4494
4494
|
opts = {
|
|
4495
4495
|
id_type: 56, # Integer | Type of this document
|
|
4496
4496
|
id_category: 56, # Integer | Related category
|
|
4497
|
-
date: Date.parse(
|
|
4498
|
-
duedate: Date.parse(
|
|
4497
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
4498
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
4499
4499
|
total_amount: 3.4, # Float | Taxed amount
|
|
4500
4500
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
4501
4501
|
vat: 3.4, # Float | VAT amount
|
|
4502
4502
|
income: 56, # Integer | Is an income or an outcome
|
|
4503
4503
|
readonly: 56, # Integer | Is this file readonly
|
|
4504
|
-
file: File.new(
|
|
4505
|
-
name:
|
|
4506
|
-
expand:
|
|
4504
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4505
|
+
name: 'name_example', # String | Name of the document
|
|
4506
|
+
expand: 'expand_example' # String |
|
|
4507
4507
|
}
|
|
4508
4508
|
|
|
4509
4509
|
begin
|
|
@@ -4572,15 +4572,15 @@ end
|
|
|
4572
4572
|
|
|
4573
4573
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4574
4574
|
|
|
4575
|
-
id_user =
|
|
4575
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4576
4576
|
|
|
4577
4577
|
id_connection = 56 # Integer |
|
|
4578
4578
|
|
|
4579
4579
|
id_subscription = 56 # Integer |
|
|
4580
4580
|
|
|
4581
|
-
date = Date.parse(
|
|
4581
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
4582
4582
|
|
|
4583
|
-
duedate = Date.parse(
|
|
4583
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
4584
4584
|
|
|
4585
4585
|
opts = {
|
|
4586
4586
|
id_type: 56, # Integer | Type of this document
|
|
@@ -4590,10 +4590,10 @@ opts = {
|
|
|
4590
4590
|
vat: 3.4, # Float | VAT amount
|
|
4591
4591
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
4592
4592
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
4593
|
-
file: File.new(
|
|
4593
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4594
4594
|
id_ocr: 56, # Integer | Related OCR process
|
|
4595
|
-
name:
|
|
4596
|
-
expand:
|
|
4595
|
+
name: 'name_example', # String | Name of the document
|
|
4596
|
+
expand: 'expand_example' # String |
|
|
4597
4597
|
}
|
|
4598
4598
|
|
|
4599
4599
|
begin
|
|
@@ -4662,7 +4662,7 @@ end
|
|
|
4662
4662
|
|
|
4663
4663
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4664
4664
|
|
|
4665
|
-
id_user =
|
|
4665
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4666
4666
|
|
|
4667
4667
|
id_connection = 56 # Integer |
|
|
4668
4668
|
|
|
@@ -4671,7 +4671,7 @@ id_subscription = 56 # Integer |
|
|
|
4671
4671
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
4672
4672
|
|
|
4673
4673
|
opts = {
|
|
4674
|
-
expand:
|
|
4674
|
+
expand: 'expand_example' # String |
|
|
4675
4675
|
}
|
|
4676
4676
|
|
|
4677
4677
|
begin
|
|
@@ -4729,16 +4729,16 @@ end
|
|
|
4729
4729
|
|
|
4730
4730
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4731
4731
|
|
|
4732
|
-
id_user =
|
|
4732
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4733
4733
|
|
|
4734
4734
|
id_connection = 56 # Integer |
|
|
4735
4735
|
|
|
4736
4736
|
id_subscription = 56 # Integer |
|
|
4737
4737
|
|
|
4738
4738
|
opts = {
|
|
4739
|
-
name:
|
|
4739
|
+
name: 'name_example', # String | Label of the subscription
|
|
4740
4740
|
disabled: true, # BOOLEAN | If the subscription is disabled (not synchronized)
|
|
4741
|
-
expand:
|
|
4741
|
+
expand: 'expand_example' # String |
|
|
4742
4742
|
}
|
|
4743
4743
|
|
|
4744
4744
|
begin
|
|
@@ -4797,14 +4797,14 @@ end
|
|
|
4797
4797
|
|
|
4798
4798
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4799
4799
|
|
|
4800
|
-
id_user =
|
|
4800
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4801
4801
|
|
|
4802
4802
|
id_connection = 56 # Integer |
|
|
4803
4803
|
|
|
4804
4804
|
id_transaction = 56 # Integer |
|
|
4805
4805
|
|
|
4806
4806
|
opts = {
|
|
4807
|
-
expand:
|
|
4807
|
+
expand: 'expand_example' # String |
|
|
4808
4808
|
}
|
|
4809
4809
|
|
|
4810
4810
|
begin
|
|
@@ -4841,7 +4841,7 @@ Name | Type | Description | Notes
|
|
|
4841
4841
|
|
|
4842
4842
|
|
|
4843
4843
|
# **users_id_user_connections_id_connection_transactions_id_transaction_documents_get**
|
|
4844
|
-
>
|
|
4844
|
+
> InlineResponse20028 users_id_user_connections_id_connection_transactions_id_transaction_documents_get(id_user, id_connection, id_transaction, opts)
|
|
4845
4845
|
|
|
4846
4846
|
Get documents
|
|
4847
4847
|
|
|
@@ -4861,7 +4861,7 @@ end
|
|
|
4861
4861
|
|
|
4862
4862
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4863
4863
|
|
|
4864
|
-
id_user =
|
|
4864
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4865
4865
|
|
|
4866
4866
|
id_connection = 56 # Integer |
|
|
4867
4867
|
|
|
@@ -4870,14 +4870,14 @@ id_transaction = 56 # Integer |
|
|
|
4870
4870
|
opts = {
|
|
4871
4871
|
limit: 56, # Integer | limit number of results
|
|
4872
4872
|
offset: 56, # Integer | offset of first result
|
|
4873
|
-
min_date: Date.parse(
|
|
4874
|
-
max_date: Date.parse(
|
|
4873
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4874
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4875
4875
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
4876
|
-
max_amount: 3.4, # Float |
|
|
4876
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
4877
4877
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
4878
|
-
max_timestamp: 3.4, # Float |
|
|
4878
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
4879
4879
|
id_type: 56, # Integer | filter with a document type
|
|
4880
|
-
expand:
|
|
4880
|
+
expand: 'expand_example' # String |
|
|
4881
4881
|
}
|
|
4882
4882
|
|
|
4883
4883
|
begin
|
|
@@ -4901,15 +4901,15 @@ Name | Type | Description | Notes
|
|
|
4901
4901
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
4902
4902
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
4903
4903
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
4904
|
-
**max_amount** | **Float**|
|
|
4904
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
4905
4905
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
4906
|
-
**max_timestamp** | **Float**|
|
|
4906
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
4907
4907
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
4908
4908
|
**expand** | **String**| | [optional]
|
|
4909
4909
|
|
|
4910
4910
|
### Return type
|
|
4911
4911
|
|
|
4912
|
-
[**
|
|
4912
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
4913
4913
|
|
|
4914
4914
|
### Authorization
|
|
4915
4915
|
|
|
@@ -4943,7 +4943,7 @@ end
|
|
|
4943
4943
|
|
|
4944
4944
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
4945
4945
|
|
|
4946
|
-
id_user =
|
|
4946
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4947
4947
|
|
|
4948
4948
|
id_connection = 56 # Integer |
|
|
4949
4949
|
|
|
@@ -4952,7 +4952,7 @@ id_transaction = 56 # Integer |
|
|
|
4952
4952
|
id_document = 56 # Integer |
|
|
4953
4953
|
|
|
4954
4954
|
opts = {
|
|
4955
|
-
expand:
|
|
4955
|
+
expand: 'expand_example' # String |
|
|
4956
4956
|
}
|
|
4957
4957
|
|
|
4958
4958
|
begin
|
|
@@ -5010,7 +5010,7 @@ end
|
|
|
5010
5010
|
|
|
5011
5011
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5012
5012
|
|
|
5013
|
-
id_user =
|
|
5013
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5014
5014
|
|
|
5015
5015
|
id_connection = 56 # Integer |
|
|
5016
5016
|
|
|
@@ -5021,16 +5021,16 @@ id_document = 56 # Integer |
|
|
|
5021
5021
|
opts = {
|
|
5022
5022
|
id_type: 56, # Integer | Type of this document
|
|
5023
5023
|
id_category: 56, # Integer | Related category
|
|
5024
|
-
date: Date.parse(
|
|
5025
|
-
duedate: Date.parse(
|
|
5024
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
5025
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
5026
5026
|
total_amount: 3.4, # Float | Taxed amount
|
|
5027
5027
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
5028
5028
|
vat: 3.4, # Float | VAT amount
|
|
5029
5029
|
income: 56, # Integer | Is an income or an outcome
|
|
5030
5030
|
readonly: 56, # Integer | Is this file readonly
|
|
5031
|
-
file: File.new(
|
|
5032
|
-
name:
|
|
5033
|
-
expand:
|
|
5031
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5032
|
+
name: 'name_example', # String | Name of the document
|
|
5033
|
+
expand: 'expand_example' # String |
|
|
5034
5034
|
}
|
|
5035
5035
|
|
|
5036
5036
|
begin
|
|
@@ -5099,15 +5099,15 @@ end
|
|
|
5099
5099
|
|
|
5100
5100
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5101
5101
|
|
|
5102
|
-
id_user =
|
|
5102
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5103
5103
|
|
|
5104
5104
|
id_connection = 56 # Integer |
|
|
5105
5105
|
|
|
5106
5106
|
id_transaction = 56 # Integer |
|
|
5107
5107
|
|
|
5108
|
-
date = Date.parse(
|
|
5108
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
5109
5109
|
|
|
5110
|
-
duedate = Date.parse(
|
|
5110
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
5111
5111
|
|
|
5112
5112
|
opts = {
|
|
5113
5113
|
id_type: 56, # Integer | Type of this document
|
|
@@ -5117,10 +5117,10 @@ opts = {
|
|
|
5117
5117
|
vat: 3.4, # Float | VAT amount
|
|
5118
5118
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
5119
5119
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
5120
|
-
file: File.new(
|
|
5120
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5121
5121
|
id_ocr: 56, # Integer | Related OCR process
|
|
5122
|
-
name:
|
|
5123
|
-
expand:
|
|
5122
|
+
name: 'name_example', # String | Name of the document
|
|
5123
|
+
expand: 'expand_example' # String |
|
|
5124
5124
|
}
|
|
5125
5125
|
|
|
5126
5126
|
begin
|
|
@@ -5189,7 +5189,7 @@ end
|
|
|
5189
5189
|
|
|
5190
5190
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5191
5191
|
|
|
5192
|
-
id_user =
|
|
5192
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5193
5193
|
|
|
5194
5194
|
id_connection = 56 # Integer |
|
|
5195
5195
|
|
|
@@ -5198,7 +5198,7 @@ id_transaction = 56 # Integer |
|
|
|
5198
5198
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
5199
5199
|
|
|
5200
5200
|
opts = {
|
|
5201
|
-
expand:
|
|
5201
|
+
expand: 'expand_example' # String |
|
|
5202
5202
|
}
|
|
5203
5203
|
|
|
5204
5204
|
begin
|
|
@@ -5256,14 +5256,14 @@ end
|
|
|
5256
5256
|
|
|
5257
5257
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5258
5258
|
|
|
5259
|
-
id_user =
|
|
5259
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5260
5260
|
|
|
5261
5261
|
id_connection = 56 # Integer |
|
|
5262
5262
|
|
|
5263
5263
|
id_transactions_cluster = 56 # Integer |
|
|
5264
5264
|
|
|
5265
5265
|
opts = {
|
|
5266
|
-
expand:
|
|
5266
|
+
expand: 'expand_example' # String |
|
|
5267
5267
|
}
|
|
5268
5268
|
|
|
5269
5269
|
begin
|
|
@@ -5300,7 +5300,7 @@ Name | Type | Description | Notes
|
|
|
5300
5300
|
|
|
5301
5301
|
|
|
5302
5302
|
# **users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get**
|
|
5303
|
-
>
|
|
5303
|
+
> InlineResponse20028 users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_connection, id_transactions_cluster, opts)
|
|
5304
5304
|
|
|
5305
5305
|
Get documents
|
|
5306
5306
|
|
|
@@ -5320,7 +5320,7 @@ end
|
|
|
5320
5320
|
|
|
5321
5321
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5322
5322
|
|
|
5323
|
-
id_user =
|
|
5323
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5324
5324
|
|
|
5325
5325
|
id_connection = 56 # Integer |
|
|
5326
5326
|
|
|
@@ -5329,14 +5329,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
5329
5329
|
opts = {
|
|
5330
5330
|
limit: 56, # Integer | limit number of results
|
|
5331
5331
|
offset: 56, # Integer | offset of first result
|
|
5332
|
-
min_date: Date.parse(
|
|
5333
|
-
max_date: Date.parse(
|
|
5332
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
5333
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
5334
5334
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
5335
|
-
max_amount: 3.4, # Float |
|
|
5335
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
5336
5336
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
5337
|
-
max_timestamp: 3.4, # Float |
|
|
5337
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
5338
5338
|
id_type: 56, # Integer | filter with a document type
|
|
5339
|
-
expand:
|
|
5339
|
+
expand: 'expand_example' # String |
|
|
5340
5340
|
}
|
|
5341
5341
|
|
|
5342
5342
|
begin
|
|
@@ -5360,15 +5360,15 @@ Name | Type | Description | Notes
|
|
|
5360
5360
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
5361
5361
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
5362
5362
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
5363
|
-
**max_amount** | **Float**|
|
|
5363
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
5364
5364
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
5365
|
-
**max_timestamp** | **Float**|
|
|
5365
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
5366
5366
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
5367
5367
|
**expand** | **String**| | [optional]
|
|
5368
5368
|
|
|
5369
5369
|
### Return type
|
|
5370
5370
|
|
|
5371
|
-
[**
|
|
5371
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
5372
5372
|
|
|
5373
5373
|
### Authorization
|
|
5374
5374
|
|
|
@@ -5402,7 +5402,7 @@ end
|
|
|
5402
5402
|
|
|
5403
5403
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5404
5404
|
|
|
5405
|
-
id_user =
|
|
5405
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5406
5406
|
|
|
5407
5407
|
id_connection = 56 # Integer |
|
|
5408
5408
|
|
|
@@ -5411,7 +5411,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
5411
5411
|
id_document = 56 # Integer |
|
|
5412
5412
|
|
|
5413
5413
|
opts = {
|
|
5414
|
-
expand:
|
|
5414
|
+
expand: 'expand_example' # String |
|
|
5415
5415
|
}
|
|
5416
5416
|
|
|
5417
5417
|
begin
|
|
@@ -5469,7 +5469,7 @@ end
|
|
|
5469
5469
|
|
|
5470
5470
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5471
5471
|
|
|
5472
|
-
id_user =
|
|
5472
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5473
5473
|
|
|
5474
5474
|
id_connection = 56 # Integer |
|
|
5475
5475
|
|
|
@@ -5480,16 +5480,16 @@ id_document = 56 # Integer |
|
|
|
5480
5480
|
opts = {
|
|
5481
5481
|
id_type: 56, # Integer | Type of this document
|
|
5482
5482
|
id_category: 56, # Integer | Related category
|
|
5483
|
-
date: Date.parse(
|
|
5484
|
-
duedate: Date.parse(
|
|
5483
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
5484
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
5485
5485
|
total_amount: 3.4, # Float | Taxed amount
|
|
5486
5486
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
5487
5487
|
vat: 3.4, # Float | VAT amount
|
|
5488
5488
|
income: 56, # Integer | Is an income or an outcome
|
|
5489
5489
|
readonly: 56, # Integer | Is this file readonly
|
|
5490
|
-
file: File.new(
|
|
5491
|
-
name:
|
|
5492
|
-
expand:
|
|
5490
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5491
|
+
name: 'name_example', # String | Name of the document
|
|
5492
|
+
expand: 'expand_example' # String |
|
|
5493
5493
|
}
|
|
5494
5494
|
|
|
5495
5495
|
begin
|
|
@@ -5558,15 +5558,15 @@ end
|
|
|
5558
5558
|
|
|
5559
5559
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5560
5560
|
|
|
5561
|
-
id_user =
|
|
5561
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5562
5562
|
|
|
5563
5563
|
id_connection = 56 # Integer |
|
|
5564
5564
|
|
|
5565
5565
|
id_transactions_cluster = 56 # Integer |
|
|
5566
5566
|
|
|
5567
|
-
date = Date.parse(
|
|
5567
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
5568
5568
|
|
|
5569
|
-
duedate = Date.parse(
|
|
5569
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
5570
5570
|
|
|
5571
5571
|
opts = {
|
|
5572
5572
|
id_type: 56, # Integer | Type of this document
|
|
@@ -5576,10 +5576,10 @@ opts = {
|
|
|
5576
5576
|
vat: 3.4, # Float | VAT amount
|
|
5577
5577
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
5578
5578
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
5579
|
-
file: File.new(
|
|
5579
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5580
5580
|
id_ocr: 56, # Integer | Related OCR process
|
|
5581
|
-
name:
|
|
5582
|
-
expand:
|
|
5581
|
+
name: 'name_example', # String | Name of the document
|
|
5582
|
+
expand: 'expand_example' # String |
|
|
5583
5583
|
}
|
|
5584
5584
|
|
|
5585
5585
|
begin
|
|
@@ -5648,7 +5648,7 @@ end
|
|
|
5648
5648
|
|
|
5649
5649
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5650
5650
|
|
|
5651
|
-
id_user =
|
|
5651
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5652
5652
|
|
|
5653
5653
|
id_connection = 56 # Integer |
|
|
5654
5654
|
|
|
@@ -5657,7 +5657,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
5657
5657
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
5658
5658
|
|
|
5659
5659
|
opts = {
|
|
5660
|
-
expand:
|
|
5660
|
+
expand: 'expand_example' # String |
|
|
5661
5661
|
}
|
|
5662
5662
|
|
|
5663
5663
|
begin
|
|
@@ -5715,24 +5715,23 @@ end
|
|
|
5715
5715
|
|
|
5716
5716
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5717
5717
|
|
|
5718
|
-
id_user =
|
|
5718
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5719
5719
|
|
|
5720
5720
|
opts = {
|
|
5721
|
-
|
|
5722
|
-
birthday:
|
|
5723
|
-
password:
|
|
5724
|
-
oauth_token:
|
|
5725
|
-
oauth_token_secret:
|
|
5726
|
-
auth_type:
|
|
5727
|
-
secret:
|
|
5728
|
-
type:
|
|
5729
|
-
birthdate:
|
|
5730
|
-
nuser:
|
|
5731
|
-
website:
|
|
5732
|
-
|
|
5733
|
-
login: "login_example", # String | bank additional login parameter
|
|
5721
|
+
id_connector: 56, # Integer | ID of the connector
|
|
5722
|
+
birthday: 'birthday_example', # String | bank additional login parameter
|
|
5723
|
+
password: 'password_example', # String | bank additional login parameter
|
|
5724
|
+
oauth_token: 'oauth_token_example', # String | bank additional login parameter
|
|
5725
|
+
oauth_token_secret: 'oauth_token_secret_example', # String | bank additional login parameter
|
|
5726
|
+
auth_type: 'auth_type_example', # String | bank additional login parameter
|
|
5727
|
+
secret: 'secret_example', # String | bank additional login parameter
|
|
5728
|
+
type: 'type_example', # String | bank additional login parameter
|
|
5729
|
+
birthdate: 'birthdate_example', # String | bank additional login parameter
|
|
5730
|
+
nuser: 'nuser_example', # String | bank additional login parameter
|
|
5731
|
+
website: 'website_example', # String | bank additional login parameter
|
|
5732
|
+
login: 'login_example', # String | bank additional login parameter
|
|
5734
5733
|
id_provider: 56, # Integer | ID of the provider
|
|
5735
|
-
expand:
|
|
5734
|
+
expand: 'expand_example' # String |
|
|
5736
5735
|
}
|
|
5737
5736
|
|
|
5738
5737
|
begin
|
|
@@ -5749,7 +5748,7 @@ end
|
|
|
5749
5748
|
Name | Type | Description | Notes
|
|
5750
5749
|
------------- | ------------- | ------------- | -------------
|
|
5751
5750
|
**id_user** | **String**| Hint: you can use 'me' or 'all' |
|
|
5752
|
-
**
|
|
5751
|
+
**id_connector** | **Integer**| ID of the connector | [optional]
|
|
5753
5752
|
**birthday** | **String**| bank additional login parameter | [optional]
|
|
5754
5753
|
**password** | **String**| bank additional login parameter | [optional]
|
|
5755
5754
|
**oauth_token** | **String**| bank additional login parameter | [optional]
|
|
@@ -5760,7 +5759,6 @@ Name | Type | Description | Notes
|
|
|
5760
5759
|
**birthdate** | **String**| bank additional login parameter | [optional]
|
|
5761
5760
|
**nuser** | **String**| bank additional login parameter | [optional]
|
|
5762
5761
|
**website** | **String**| bank additional login parameter | [optional]
|
|
5763
|
-
**password2** | **String**| bank additional login parameter | [optional]
|
|
5764
5762
|
**login** | **String**| bank additional login parameter | [optional]
|
|
5765
5763
|
**id_provider** | **Integer**| ID of the provider | [optional]
|
|
5766
5764
|
**expand** | **String**| | [optional]
|
|
@@ -5775,7 +5773,7 @@ Name | Type | Description | Notes
|
|
|
5775
5773
|
|
|
5776
5774
|
### HTTP request headers
|
|
5777
5775
|
|
|
5778
|
-
- **Content-Type**:
|
|
5776
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
5779
5777
|
- **Accept**: application/json
|
|
5780
5778
|
|
|
5781
5779
|
|
|
@@ -5801,10 +5799,10 @@ end
|
|
|
5801
5799
|
|
|
5802
5800
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5803
5801
|
|
|
5804
|
-
id_user =
|
|
5802
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5805
5803
|
|
|
5806
5804
|
opts = {
|
|
5807
|
-
expand:
|
|
5805
|
+
expand: 'expand_example' # String |
|
|
5808
5806
|
}
|
|
5809
5807
|
|
|
5810
5808
|
begin
|
|
@@ -5839,7 +5837,7 @@ Name | Type | Description | Notes
|
|
|
5839
5837
|
|
|
5840
5838
|
|
|
5841
5839
|
# **users_id_user_documents_get**
|
|
5842
|
-
>
|
|
5840
|
+
> InlineResponse20028 users_id_user_documents_get(id_user, opts)
|
|
5843
5841
|
|
|
5844
5842
|
Get documents
|
|
5845
5843
|
|
|
@@ -5859,19 +5857,19 @@ end
|
|
|
5859
5857
|
|
|
5860
5858
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5861
5859
|
|
|
5862
|
-
id_user =
|
|
5860
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5863
5861
|
|
|
5864
5862
|
opts = {
|
|
5865
5863
|
limit: 56, # Integer | limit number of results
|
|
5866
5864
|
offset: 56, # Integer | offset of first result
|
|
5867
|
-
min_date: Date.parse(
|
|
5868
|
-
max_date: Date.parse(
|
|
5865
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
5866
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
5869
5867
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
5870
|
-
max_amount: 3.4, # Float |
|
|
5868
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
5871
5869
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
5872
|
-
max_timestamp: 3.4, # Float |
|
|
5870
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
5873
5871
|
id_type: 56, # Integer | filter with a document type
|
|
5874
|
-
expand:
|
|
5872
|
+
expand: 'expand_example' # String |
|
|
5875
5873
|
}
|
|
5876
5874
|
|
|
5877
5875
|
begin
|
|
@@ -5893,15 +5891,15 @@ Name | Type | Description | Notes
|
|
|
5893
5891
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
5894
5892
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
5895
5893
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
5896
|
-
**max_amount** | **Float**|
|
|
5894
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
5897
5895
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
5898
|
-
**max_timestamp** | **Float**|
|
|
5896
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
5899
5897
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
5900
5898
|
**expand** | **String**| | [optional]
|
|
5901
5899
|
|
|
5902
5900
|
### Return type
|
|
5903
5901
|
|
|
5904
|
-
[**
|
|
5902
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
5905
5903
|
|
|
5906
5904
|
### Authorization
|
|
5907
5905
|
|
|
@@ -5935,12 +5933,12 @@ end
|
|
|
5935
5933
|
|
|
5936
5934
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5937
5935
|
|
|
5938
|
-
id_user =
|
|
5936
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5939
5937
|
|
|
5940
5938
|
id_document = 56 # Integer |
|
|
5941
5939
|
|
|
5942
5940
|
opts = {
|
|
5943
|
-
expand:
|
|
5941
|
+
expand: 'expand_example' # String |
|
|
5944
5942
|
}
|
|
5945
5943
|
|
|
5946
5944
|
begin
|
|
@@ -5996,23 +5994,23 @@ end
|
|
|
5996
5994
|
|
|
5997
5995
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
5998
5996
|
|
|
5999
|
-
id_user =
|
|
5997
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6000
5998
|
|
|
6001
5999
|
id_document = 56 # Integer |
|
|
6002
6000
|
|
|
6003
6001
|
opts = {
|
|
6004
6002
|
id_type: 56, # Integer | Type of this document
|
|
6005
6003
|
id_category: 56, # Integer | Related category
|
|
6006
|
-
date: Date.parse(
|
|
6007
|
-
duedate: Date.parse(
|
|
6004
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
6005
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
6008
6006
|
total_amount: 3.4, # Float | Taxed amount
|
|
6009
6007
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
6010
6008
|
vat: 3.4, # Float | VAT amount
|
|
6011
6009
|
income: 56, # Integer | Is an income or an outcome
|
|
6012
6010
|
readonly: 56, # Integer | Is this file readonly
|
|
6013
|
-
file: File.new(
|
|
6014
|
-
name:
|
|
6015
|
-
expand:
|
|
6011
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
6012
|
+
name: 'name_example', # String | Name of the document
|
|
6013
|
+
expand: 'expand_example' # String |
|
|
6016
6014
|
}
|
|
6017
6015
|
|
|
6018
6016
|
begin
|
|
@@ -6079,11 +6077,11 @@ end
|
|
|
6079
6077
|
|
|
6080
6078
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6081
6079
|
|
|
6082
|
-
id_user =
|
|
6080
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6083
6081
|
|
|
6084
|
-
date = Date.parse(
|
|
6082
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
6085
6083
|
|
|
6086
|
-
duedate = Date.parse(
|
|
6084
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
6087
6085
|
|
|
6088
6086
|
opts = {
|
|
6089
6087
|
id_type: 56, # Integer | Type of this document
|
|
@@ -6093,10 +6091,10 @@ opts = {
|
|
|
6093
6091
|
vat: 3.4, # Float | VAT amount
|
|
6094
6092
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
6095
6093
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
6096
|
-
file: File.new(
|
|
6094
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
6097
6095
|
id_ocr: 56, # Integer | Related OCR process
|
|
6098
|
-
name:
|
|
6099
|
-
expand:
|
|
6096
|
+
name: 'name_example', # String | Name of the document
|
|
6097
|
+
expand: 'expand_example' # String |
|
|
6100
6098
|
}
|
|
6101
6099
|
|
|
6102
6100
|
begin
|
|
@@ -6163,12 +6161,12 @@ end
|
|
|
6163
6161
|
|
|
6164
6162
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6165
6163
|
|
|
6166
|
-
id_user =
|
|
6164
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6167
6165
|
|
|
6168
6166
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
6169
6167
|
|
|
6170
6168
|
opts = {
|
|
6171
|
-
expand:
|
|
6169
|
+
expand: 'expand_example' # String |
|
|
6172
6170
|
}
|
|
6173
6171
|
|
|
6174
6172
|
begin
|
|
@@ -6204,7 +6202,7 @@ Name | Type | Description | Notes
|
|
|
6204
6202
|
|
|
6205
6203
|
|
|
6206
6204
|
# **users_id_user_logs_get**
|
|
6207
|
-
>
|
|
6205
|
+
> InlineResponse20016 users_id_user_logs_get(id_user, opts)
|
|
6208
6206
|
|
|
6209
6207
|
Get connection logs
|
|
6210
6208
|
|
|
@@ -6224,20 +6222,20 @@ end
|
|
|
6224
6222
|
|
|
6225
6223
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6226
6224
|
|
|
6227
|
-
id_user =
|
|
6225
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6228
6226
|
|
|
6229
6227
|
opts = {
|
|
6230
6228
|
limit: 56, # Integer | limit number of results
|
|
6231
6229
|
offset: 56, # Integer | offset of first result
|
|
6232
|
-
min_date: Date.parse(
|
|
6233
|
-
max_date: Date.parse(
|
|
6230
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal date
|
|
6231
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum date
|
|
6234
6232
|
state: 56, # Integer | state of user
|
|
6235
|
-
period:
|
|
6233
|
+
period: 'period_example', # String | period to group logs
|
|
6236
6234
|
id_user2: 56, # Integer | ID of a user
|
|
6237
6235
|
id_connection: 56, # Integer | ID of a connection
|
|
6238
|
-
|
|
6239
|
-
charged: true, # BOOLEAN | consider only logs for charged
|
|
6240
|
-
expand:
|
|
6236
|
+
id_connector: 56, # Integer | ID of a connector
|
|
6237
|
+
charged: true, # BOOLEAN | consider only logs for charged connectors
|
|
6238
|
+
expand: 'expand_example' # String |
|
|
6241
6239
|
}
|
|
6242
6240
|
|
|
6243
6241
|
begin
|
|
@@ -6262,13 +6260,13 @@ Name | Type | Description | Notes
|
|
|
6262
6260
|
**period** | **String**| period to group logs | [optional]
|
|
6263
6261
|
**id_user2** | **Integer**| ID of a user | [optional]
|
|
6264
6262
|
**id_connection** | **Integer**| ID of a connection | [optional]
|
|
6265
|
-
**
|
|
6266
|
-
**charged** | **BOOLEAN**| consider only logs for charged
|
|
6263
|
+
**id_connector** | **Integer**| ID of a connector | [optional]
|
|
6264
|
+
**charged** | **BOOLEAN**| consider only logs for charged connectors | [optional]
|
|
6267
6265
|
**expand** | **String**| | [optional]
|
|
6268
6266
|
|
|
6269
6267
|
### Return type
|
|
6270
6268
|
|
|
6271
|
-
[**
|
|
6269
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
|
6272
6270
|
|
|
6273
6271
|
### Authorization
|
|
6274
6272
|
|
|
@@ -6302,13 +6300,13 @@ end
|
|
|
6302
6300
|
|
|
6303
6301
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6304
6302
|
|
|
6305
|
-
id_user =
|
|
6303
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6306
6304
|
|
|
6307
|
-
file = File.new(
|
|
6305
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
6308
6306
|
|
|
6309
6307
|
opts = {
|
|
6310
6308
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
6311
|
-
name:
|
|
6309
|
+
name: 'name_example' # String | Name of the document
|
|
6312
6310
|
}
|
|
6313
6311
|
|
|
6314
6312
|
begin
|
|
@@ -6364,12 +6362,12 @@ end
|
|
|
6364
6362
|
|
|
6365
6363
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6366
6364
|
|
|
6367
|
-
id_user =
|
|
6365
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6368
6366
|
|
|
6369
6367
|
id_subscription = 56 # Integer |
|
|
6370
6368
|
|
|
6371
6369
|
opts = {
|
|
6372
|
-
expand:
|
|
6370
|
+
expand: 'expand_example' # String |
|
|
6373
6371
|
}
|
|
6374
6372
|
|
|
6375
6373
|
begin
|
|
@@ -6425,12 +6423,12 @@ end
|
|
|
6425
6423
|
|
|
6426
6424
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6427
6425
|
|
|
6428
|
-
id_user =
|
|
6426
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6429
6427
|
|
|
6430
6428
|
id_subscription = 56 # Integer |
|
|
6431
6429
|
|
|
6432
6430
|
opts = {
|
|
6433
|
-
expand:
|
|
6431
|
+
expand: 'expand_example' # String |
|
|
6434
6432
|
}
|
|
6435
6433
|
|
|
6436
6434
|
begin
|
|
@@ -6466,7 +6464,7 @@ Name | Type | Description | Notes
|
|
|
6466
6464
|
|
|
6467
6465
|
|
|
6468
6466
|
# **users_id_user_subscriptions_id_subscription_documents_get**
|
|
6469
|
-
>
|
|
6467
|
+
> InlineResponse20028 users_id_user_subscriptions_id_subscription_documents_get(id_user, id_subscription, opts)
|
|
6470
6468
|
|
|
6471
6469
|
Get documents
|
|
6472
6470
|
|
|
@@ -6486,21 +6484,21 @@ end
|
|
|
6486
6484
|
|
|
6487
6485
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6488
6486
|
|
|
6489
|
-
id_user =
|
|
6487
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6490
6488
|
|
|
6491
6489
|
id_subscription = 56 # Integer |
|
|
6492
6490
|
|
|
6493
6491
|
opts = {
|
|
6494
6492
|
limit: 56, # Integer | limit number of results
|
|
6495
6493
|
offset: 56, # Integer | offset of first result
|
|
6496
|
-
min_date: Date.parse(
|
|
6497
|
-
max_date: Date.parse(
|
|
6494
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
6495
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
6498
6496
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
6499
|
-
max_amount: 3.4, # Float |
|
|
6497
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
6500
6498
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
6501
|
-
max_timestamp: 3.4, # Float |
|
|
6499
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
6502
6500
|
id_type: 56, # Integer | filter with a document type
|
|
6503
|
-
expand:
|
|
6501
|
+
expand: 'expand_example' # String |
|
|
6504
6502
|
}
|
|
6505
6503
|
|
|
6506
6504
|
begin
|
|
@@ -6523,15 +6521,15 @@ Name | Type | Description | Notes
|
|
|
6523
6521
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
6524
6522
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
6525
6523
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
6526
|
-
**max_amount** | **Float**|
|
|
6524
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
6527
6525
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
6528
|
-
**max_timestamp** | **Float**|
|
|
6526
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
6529
6527
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
6530
6528
|
**expand** | **String**| | [optional]
|
|
6531
6529
|
|
|
6532
6530
|
### Return type
|
|
6533
6531
|
|
|
6534
|
-
[**
|
|
6532
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
6535
6533
|
|
|
6536
6534
|
### Authorization
|
|
6537
6535
|
|
|
@@ -6565,14 +6563,14 @@ end
|
|
|
6565
6563
|
|
|
6566
6564
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6567
6565
|
|
|
6568
|
-
id_user =
|
|
6566
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6569
6567
|
|
|
6570
6568
|
id_subscription = 56 # Integer |
|
|
6571
6569
|
|
|
6572
6570
|
id_document = 56 # Integer |
|
|
6573
6571
|
|
|
6574
6572
|
opts = {
|
|
6575
|
-
expand:
|
|
6573
|
+
expand: 'expand_example' # String |
|
|
6576
6574
|
}
|
|
6577
6575
|
|
|
6578
6576
|
begin
|
|
@@ -6629,7 +6627,7 @@ end
|
|
|
6629
6627
|
|
|
6630
6628
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6631
6629
|
|
|
6632
|
-
id_user =
|
|
6630
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6633
6631
|
|
|
6634
6632
|
id_subscription = 56 # Integer |
|
|
6635
6633
|
|
|
@@ -6638,16 +6636,16 @@ id_document = 56 # Integer |
|
|
|
6638
6636
|
opts = {
|
|
6639
6637
|
id_type: 56, # Integer | Type of this document
|
|
6640
6638
|
id_category: 56, # Integer | Related category
|
|
6641
|
-
date: Date.parse(
|
|
6642
|
-
duedate: Date.parse(
|
|
6639
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
6640
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
6643
6641
|
total_amount: 3.4, # Float | Taxed amount
|
|
6644
6642
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
6645
6643
|
vat: 3.4, # Float | VAT amount
|
|
6646
6644
|
income: 56, # Integer | Is an income or an outcome
|
|
6647
6645
|
readonly: 56, # Integer | Is this file readonly
|
|
6648
|
-
file: File.new(
|
|
6649
|
-
name:
|
|
6650
|
-
expand:
|
|
6646
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
6647
|
+
name: 'name_example', # String | Name of the document
|
|
6648
|
+
expand: 'expand_example' # String |
|
|
6651
6649
|
}
|
|
6652
6650
|
|
|
6653
6651
|
begin
|
|
@@ -6715,13 +6713,13 @@ end
|
|
|
6715
6713
|
|
|
6716
6714
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6717
6715
|
|
|
6718
|
-
id_user =
|
|
6716
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6719
6717
|
|
|
6720
6718
|
id_subscription = 56 # Integer |
|
|
6721
6719
|
|
|
6722
|
-
date = Date.parse(
|
|
6720
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
6723
6721
|
|
|
6724
|
-
duedate = Date.parse(
|
|
6722
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
6725
6723
|
|
|
6726
6724
|
opts = {
|
|
6727
6725
|
id_type: 56, # Integer | Type of this document
|
|
@@ -6731,10 +6729,10 @@ opts = {
|
|
|
6731
6729
|
vat: 3.4, # Float | VAT amount
|
|
6732
6730
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
6733
6731
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
6734
|
-
file: File.new(
|
|
6732
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
6735
6733
|
id_ocr: 56, # Integer | Related OCR process
|
|
6736
|
-
name:
|
|
6737
|
-
expand:
|
|
6734
|
+
name: 'name_example', # String | Name of the document
|
|
6735
|
+
expand: 'expand_example' # String |
|
|
6738
6736
|
}
|
|
6739
6737
|
|
|
6740
6738
|
begin
|
|
@@ -6802,14 +6800,14 @@ end
|
|
|
6802
6800
|
|
|
6803
6801
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6804
6802
|
|
|
6805
|
-
id_user =
|
|
6803
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6806
6804
|
|
|
6807
6805
|
id_subscription = 56 # Integer |
|
|
6808
6806
|
|
|
6809
6807
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
6810
6808
|
|
|
6811
6809
|
opts = {
|
|
6812
|
-
expand:
|
|
6810
|
+
expand: 'expand_example' # String |
|
|
6813
6811
|
}
|
|
6814
6812
|
|
|
6815
6813
|
begin
|
|
@@ -6840,7 +6838,7 @@ Name | Type | Description | Notes
|
|
|
6840
6838
|
|
|
6841
6839
|
### HTTP request headers
|
|
6842
6840
|
|
|
6843
|
-
- **Content-Type**:
|
|
6841
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
6844
6842
|
- **Accept**: application/json
|
|
6845
6843
|
|
|
6846
6844
|
|
|
@@ -6866,14 +6864,14 @@ end
|
|
|
6866
6864
|
|
|
6867
6865
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6868
6866
|
|
|
6869
|
-
id_user =
|
|
6867
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6870
6868
|
|
|
6871
6869
|
id_subscription = 56 # Integer |
|
|
6872
6870
|
|
|
6873
6871
|
opts = {
|
|
6874
|
-
name:
|
|
6872
|
+
name: 'name_example', # String | Label of the subscription
|
|
6875
6873
|
disabled: true, # BOOLEAN | If the subscription is disabled (not synchronized)
|
|
6876
|
-
expand:
|
|
6874
|
+
expand: 'expand_example' # String |
|
|
6877
6875
|
}
|
|
6878
6876
|
|
|
6879
6877
|
begin
|
|
@@ -6905,7 +6903,7 @@ Name | Type | Description | Notes
|
|
|
6905
6903
|
|
|
6906
6904
|
### HTTP request headers
|
|
6907
6905
|
|
|
6908
|
-
- **Content-Type**:
|
|
6906
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
6909
6907
|
- **Accept**: application/json
|
|
6910
6908
|
|
|
6911
6909
|
|
|
@@ -6931,12 +6929,12 @@ end
|
|
|
6931
6929
|
|
|
6932
6930
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6933
6931
|
|
|
6934
|
-
id_user =
|
|
6932
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6935
6933
|
|
|
6936
6934
|
id_transaction = 56 # Integer |
|
|
6937
6935
|
|
|
6938
6936
|
opts = {
|
|
6939
|
-
expand:
|
|
6937
|
+
expand: 'expand_example' # String |
|
|
6940
6938
|
}
|
|
6941
6939
|
|
|
6942
6940
|
begin
|
|
@@ -6972,7 +6970,7 @@ Name | Type | Description | Notes
|
|
|
6972
6970
|
|
|
6973
6971
|
|
|
6974
6972
|
# **users_id_user_transactions_id_transaction_documents_get**
|
|
6975
|
-
>
|
|
6973
|
+
> InlineResponse20028 users_id_user_transactions_id_transaction_documents_get(id_user, id_transaction, opts)
|
|
6976
6974
|
|
|
6977
6975
|
Get documents
|
|
6978
6976
|
|
|
@@ -6992,21 +6990,21 @@ end
|
|
|
6992
6990
|
|
|
6993
6991
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
6994
6992
|
|
|
6995
|
-
id_user =
|
|
6993
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
6996
6994
|
|
|
6997
6995
|
id_transaction = 56 # Integer |
|
|
6998
6996
|
|
|
6999
6997
|
opts = {
|
|
7000
6998
|
limit: 56, # Integer | limit number of results
|
|
7001
6999
|
offset: 56, # Integer | offset of first result
|
|
7002
|
-
min_date: Date.parse(
|
|
7003
|
-
max_date: Date.parse(
|
|
7000
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
7001
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
7004
7002
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
7005
|
-
max_amount: 3.4, # Float |
|
|
7003
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
7006
7004
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
7007
|
-
max_timestamp: 3.4, # Float |
|
|
7005
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
7008
7006
|
id_type: 56, # Integer | filter with a document type
|
|
7009
|
-
expand:
|
|
7007
|
+
expand: 'expand_example' # String |
|
|
7010
7008
|
}
|
|
7011
7009
|
|
|
7012
7010
|
begin
|
|
@@ -7029,15 +7027,15 @@ Name | Type | Description | Notes
|
|
|
7029
7027
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
7030
7028
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
7031
7029
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
7032
|
-
**max_amount** | **Float**|
|
|
7030
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
7033
7031
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
7034
|
-
**max_timestamp** | **Float**|
|
|
7032
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
7035
7033
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
7036
7034
|
**expand** | **String**| | [optional]
|
|
7037
7035
|
|
|
7038
7036
|
### Return type
|
|
7039
7037
|
|
|
7040
|
-
[**
|
|
7038
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
7041
7039
|
|
|
7042
7040
|
### Authorization
|
|
7043
7041
|
|
|
@@ -7071,14 +7069,14 @@ end
|
|
|
7071
7069
|
|
|
7072
7070
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7073
7071
|
|
|
7074
|
-
id_user =
|
|
7072
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7075
7073
|
|
|
7076
7074
|
id_transaction = 56 # Integer |
|
|
7077
7075
|
|
|
7078
7076
|
id_document = 56 # Integer |
|
|
7079
7077
|
|
|
7080
7078
|
opts = {
|
|
7081
|
-
expand:
|
|
7079
|
+
expand: 'expand_example' # String |
|
|
7082
7080
|
}
|
|
7083
7081
|
|
|
7084
7082
|
begin
|
|
@@ -7135,7 +7133,7 @@ end
|
|
|
7135
7133
|
|
|
7136
7134
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7137
7135
|
|
|
7138
|
-
id_user =
|
|
7136
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7139
7137
|
|
|
7140
7138
|
id_transaction = 56 # Integer |
|
|
7141
7139
|
|
|
@@ -7144,16 +7142,16 @@ id_document = 56 # Integer |
|
|
|
7144
7142
|
opts = {
|
|
7145
7143
|
id_type: 56, # Integer | Type of this document
|
|
7146
7144
|
id_category: 56, # Integer | Related category
|
|
7147
|
-
date: Date.parse(
|
|
7148
|
-
duedate: Date.parse(
|
|
7145
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
7146
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
7149
7147
|
total_amount: 3.4, # Float | Taxed amount
|
|
7150
7148
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
7151
7149
|
vat: 3.4, # Float | VAT amount
|
|
7152
7150
|
income: 56, # Integer | Is an income or an outcome
|
|
7153
7151
|
readonly: 56, # Integer | Is this file readonly
|
|
7154
|
-
file: File.new(
|
|
7155
|
-
name:
|
|
7156
|
-
expand:
|
|
7152
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
7153
|
+
name: 'name_example', # String | Name of the document
|
|
7154
|
+
expand: 'expand_example' # String |
|
|
7157
7155
|
}
|
|
7158
7156
|
|
|
7159
7157
|
begin
|
|
@@ -7221,13 +7219,13 @@ end
|
|
|
7221
7219
|
|
|
7222
7220
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7223
7221
|
|
|
7224
|
-
id_user =
|
|
7222
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7225
7223
|
|
|
7226
7224
|
id_transaction = 56 # Integer |
|
|
7227
7225
|
|
|
7228
|
-
date = Date.parse(
|
|
7226
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
7229
7227
|
|
|
7230
|
-
duedate = Date.parse(
|
|
7228
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
7231
7229
|
|
|
7232
7230
|
opts = {
|
|
7233
7231
|
id_type: 56, # Integer | Type of this document
|
|
@@ -7237,10 +7235,10 @@ opts = {
|
|
|
7237
7235
|
vat: 3.4, # Float | VAT amount
|
|
7238
7236
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
7239
7237
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
7240
|
-
file: File.new(
|
|
7238
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
7241
7239
|
id_ocr: 56, # Integer | Related OCR process
|
|
7242
|
-
name:
|
|
7243
|
-
expand:
|
|
7240
|
+
name: 'name_example', # String | Name of the document
|
|
7241
|
+
expand: 'expand_example' # String |
|
|
7244
7242
|
}
|
|
7245
7243
|
|
|
7246
7244
|
begin
|
|
@@ -7308,14 +7306,14 @@ end
|
|
|
7308
7306
|
|
|
7309
7307
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7310
7308
|
|
|
7311
|
-
id_user =
|
|
7309
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7312
7310
|
|
|
7313
7311
|
id_transaction = 56 # Integer |
|
|
7314
7312
|
|
|
7315
7313
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
7316
7314
|
|
|
7317
7315
|
opts = {
|
|
7318
|
-
expand:
|
|
7316
|
+
expand: 'expand_example' # String |
|
|
7319
7317
|
}
|
|
7320
7318
|
|
|
7321
7319
|
begin
|
|
@@ -7346,7 +7344,7 @@ Name | Type | Description | Notes
|
|
|
7346
7344
|
|
|
7347
7345
|
### HTTP request headers
|
|
7348
7346
|
|
|
7349
|
-
- **Content-Type**:
|
|
7347
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
7350
7348
|
- **Accept**: application/json
|
|
7351
7349
|
|
|
7352
7350
|
|
|
@@ -7372,12 +7370,12 @@ end
|
|
|
7372
7370
|
|
|
7373
7371
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7374
7372
|
|
|
7375
|
-
id_user =
|
|
7373
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7376
7374
|
|
|
7377
7375
|
id_transactions_cluster = 56 # Integer |
|
|
7378
7376
|
|
|
7379
7377
|
opts = {
|
|
7380
|
-
expand:
|
|
7378
|
+
expand: 'expand_example' # String |
|
|
7381
7379
|
}
|
|
7382
7380
|
|
|
7383
7381
|
begin
|
|
@@ -7413,7 +7411,7 @@ Name | Type | Description | Notes
|
|
|
7413
7411
|
|
|
7414
7412
|
|
|
7415
7413
|
# **users_id_user_transactionsclusters_id_transactions_cluster_documents_get**
|
|
7416
|
-
>
|
|
7414
|
+
> InlineResponse20028 users_id_user_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_transactions_cluster, opts)
|
|
7417
7415
|
|
|
7418
7416
|
Get documents
|
|
7419
7417
|
|
|
@@ -7433,21 +7431,21 @@ end
|
|
|
7433
7431
|
|
|
7434
7432
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7435
7433
|
|
|
7436
|
-
id_user =
|
|
7434
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7437
7435
|
|
|
7438
7436
|
id_transactions_cluster = 56 # Integer |
|
|
7439
7437
|
|
|
7440
7438
|
opts = {
|
|
7441
7439
|
limit: 56, # Integer | limit number of results
|
|
7442
7440
|
offset: 56, # Integer | offset of first result
|
|
7443
|
-
min_date: Date.parse(
|
|
7444
|
-
max_date: Date.parse(
|
|
7441
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
7442
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
7445
7443
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
7446
|
-
max_amount: 3.4, # Float |
|
|
7444
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
7447
7445
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
7448
|
-
max_timestamp: 3.4, # Float |
|
|
7446
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
7449
7447
|
id_type: 56, # Integer | filter with a document type
|
|
7450
|
-
expand:
|
|
7448
|
+
expand: 'expand_example' # String |
|
|
7451
7449
|
}
|
|
7452
7450
|
|
|
7453
7451
|
begin
|
|
@@ -7470,15 +7468,15 @@ Name | Type | Description | Notes
|
|
|
7470
7468
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
7471
7469
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
7472
7470
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
7473
|
-
**max_amount** | **Float**|
|
|
7471
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
7474
7472
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
7475
|
-
**max_timestamp** | **Float**|
|
|
7473
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
7476
7474
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
7477
7475
|
**expand** | **String**| | [optional]
|
|
7478
7476
|
|
|
7479
7477
|
### Return type
|
|
7480
7478
|
|
|
7481
|
-
[**
|
|
7479
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
7482
7480
|
|
|
7483
7481
|
### Authorization
|
|
7484
7482
|
|
|
@@ -7512,14 +7510,14 @@ end
|
|
|
7512
7510
|
|
|
7513
7511
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7514
7512
|
|
|
7515
|
-
id_user =
|
|
7513
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7516
7514
|
|
|
7517
7515
|
id_transactions_cluster = 56 # Integer |
|
|
7518
7516
|
|
|
7519
7517
|
id_document = 56 # Integer |
|
|
7520
7518
|
|
|
7521
7519
|
opts = {
|
|
7522
|
-
expand:
|
|
7520
|
+
expand: 'expand_example' # String |
|
|
7523
7521
|
}
|
|
7524
7522
|
|
|
7525
7523
|
begin
|
|
@@ -7576,7 +7574,7 @@ end
|
|
|
7576
7574
|
|
|
7577
7575
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7578
7576
|
|
|
7579
|
-
id_user =
|
|
7577
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7580
7578
|
|
|
7581
7579
|
id_transactions_cluster = 56 # Integer |
|
|
7582
7580
|
|
|
@@ -7585,16 +7583,16 @@ id_document = 56 # Integer |
|
|
|
7585
7583
|
opts = {
|
|
7586
7584
|
id_type: 56, # Integer | Type of this document
|
|
7587
7585
|
id_category: 56, # Integer | Related category
|
|
7588
|
-
date: Date.parse(
|
|
7589
|
-
duedate: Date.parse(
|
|
7586
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
7587
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
7590
7588
|
total_amount: 3.4, # Float | Taxed amount
|
|
7591
7589
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
7592
7590
|
vat: 3.4, # Float | VAT amount
|
|
7593
7591
|
income: 56, # Integer | Is an income or an outcome
|
|
7594
7592
|
readonly: 56, # Integer | Is this file readonly
|
|
7595
|
-
file: File.new(
|
|
7596
|
-
name:
|
|
7597
|
-
expand:
|
|
7593
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
7594
|
+
name: 'name_example', # String | Name of the document
|
|
7595
|
+
expand: 'expand_example' # String |
|
|
7598
7596
|
}
|
|
7599
7597
|
|
|
7600
7598
|
begin
|
|
@@ -7662,13 +7660,13 @@ end
|
|
|
7662
7660
|
|
|
7663
7661
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7664
7662
|
|
|
7665
|
-
id_user =
|
|
7663
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7666
7664
|
|
|
7667
7665
|
id_transactions_cluster = 56 # Integer |
|
|
7668
7666
|
|
|
7669
|
-
date = Date.parse(
|
|
7667
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
7670
7668
|
|
|
7671
|
-
duedate = Date.parse(
|
|
7669
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
7672
7670
|
|
|
7673
7671
|
opts = {
|
|
7674
7672
|
id_type: 56, # Integer | Type of this document
|
|
@@ -7678,10 +7676,10 @@ opts = {
|
|
|
7678
7676
|
vat: 3.4, # Float | VAT amount
|
|
7679
7677
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
7680
7678
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
7681
|
-
file: File.new(
|
|
7679
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
7682
7680
|
id_ocr: 56, # Integer | Related OCR process
|
|
7683
|
-
name:
|
|
7684
|
-
expand:
|
|
7681
|
+
name: 'name_example', # String | Name of the document
|
|
7682
|
+
expand: 'expand_example' # String |
|
|
7685
7683
|
}
|
|
7686
7684
|
|
|
7687
7685
|
begin
|
|
@@ -7749,14 +7747,14 @@ end
|
|
|
7749
7747
|
|
|
7750
7748
|
api_instance = BudgeaClient::ProvidersApi.new
|
|
7751
7749
|
|
|
7752
|
-
id_user =
|
|
7750
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
7753
7751
|
|
|
7754
7752
|
id_transactions_cluster = 56 # Integer |
|
|
7755
7753
|
|
|
7756
7754
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
7757
7755
|
|
|
7758
7756
|
opts = {
|
|
7759
|
-
expand:
|
|
7757
|
+
expand: 'expand_example' # String |
|
|
7760
7758
|
}
|
|
7761
7759
|
|
|
7762
7760
|
begin
|
|
@@ -7787,7 +7785,7 @@ Name | Type | Description | Notes
|
|
|
7787
7785
|
|
|
7788
7786
|
### HTTP request headers
|
|
7789
7787
|
|
|
7790
|
-
- **Content-Type**:
|
|
7788
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
7791
7789
|
- **Accept**: application/json
|
|
7792
7790
|
|
|
7793
7791
|
|