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/Connector.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# BudgeaClient::Connector
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**id** | **Integer** | ID of the connector |
|
|
7
|
+
**name** | **String** | Name of the bank or provider |
|
|
8
|
+
**id_weboob** | **String** | |
|
|
9
|
+
**hidden** | **BOOLEAN** | This connector is hidden from your users | [optional] [default to false]
|
|
10
|
+
**charged** | **BOOLEAN** | Usage of this connector is charged | [default to true]
|
|
11
|
+
**code** | **String** | Bank code | [optional]
|
|
12
|
+
**beta** | **BOOLEAN** | If true, this connector is perhaps unstable :) | [default to false]
|
|
13
|
+
**color** | **String** | Main color of the bank or provider | [optional]
|
|
14
|
+
**slug** | **String** | | [optional]
|
|
15
|
+
**sync_frequency** | **Float** | How many days to wait between syncs | [optional]
|
|
16
|
+
**months_to_fetch** | **Integer** | How many months of history to fetch | [optional]
|
|
17
|
+
**account_types** | **Array<String>** | | [optional]
|
|
18
|
+
**auth_mechanism** | **String** | Authentication mechanism to use | [optional]
|
|
19
|
+
**fields** | [**Array<Field>**](Field.md) | | [optional]
|
|
20
|
+
|
|
21
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# BudgeaClient::ConnectorCategory
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**id** | **Integer** | ID of the bank category |
|
|
7
|
+
**name** | **String** | Name of the category | [default to 'false']
|
|
8
|
+
|
|
9
|
+
|
data/docs/ConnectorLogo.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**id** | **Integer** | |
|
|
7
|
-
**
|
|
7
|
+
**id_connector** | **Integer** | ID of the connector |
|
|
8
8
|
**id_file** | **Integer** | Id of the Bank/Provider Logo |
|
|
9
9
|
**type** | **String** | Logo's type | [optional]
|
|
10
10
|
|
data/docs/Currency.md
CHANGED
|
@@ -6,5 +6,9 @@ Name | Type | Description | Notes
|
|
|
6
6
|
**id** | **String** | ISO 4217 code used as ID |
|
|
7
7
|
**symbol** | **String** | Symbol representing the currency |
|
|
8
8
|
**prefix** | **BOOLEAN** | Amount is prefixed or not by the currency | [default to false]
|
|
9
|
+
**crypto** | **BOOLEAN** | It is a crypto currency or not | [optional] [default to false]
|
|
10
|
+
**precision** | **Integer** | Numbers of significant digits | [optional]
|
|
11
|
+
**marketcap** | **Float** | Market Capitalization in EUR | [optional]
|
|
12
|
+
**datetime** | **DateTime** | Time and date of Market Cap (for cryptos) | [optional]
|
|
9
13
|
|
|
10
14
|
|
data/docs/DocumentsApi.md
CHANGED
|
@@ -83,7 +83,7 @@ Method | HTTP request | Description
|
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
# **documenttypes_get**
|
|
86
|
-
>
|
|
86
|
+
> InlineResponse20014 documenttypes_get(opts)
|
|
87
87
|
|
|
88
88
|
Get document types
|
|
89
89
|
|
|
@@ -104,7 +104,7 @@ end
|
|
|
104
104
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
105
105
|
|
|
106
106
|
opts = {
|
|
107
|
-
expand:
|
|
107
|
+
expand: 'expand_example' # String |
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
begin
|
|
@@ -124,7 +124,7 @@ Name | Type | Description | Notes
|
|
|
124
124
|
|
|
125
125
|
### Return type
|
|
126
126
|
|
|
127
|
-
[**
|
|
127
|
+
[**InlineResponse20014**](InlineResponse20014.md)
|
|
128
128
|
|
|
129
129
|
### Authorization
|
|
130
130
|
|
|
@@ -160,12 +160,12 @@ api_instance = BudgeaClient::DocumentsApi.new
|
|
|
160
160
|
|
|
161
161
|
id_documenttype = 56 # Integer |
|
|
162
162
|
|
|
163
|
-
name =
|
|
163
|
+
name = 'name_example' # String | Displayed name of document type
|
|
164
164
|
|
|
165
165
|
attacheable = 56 # Integer | If true, documents of this type can be attached to a transaction, and have amount related meta-data
|
|
166
166
|
|
|
167
167
|
opts = {
|
|
168
|
-
expand:
|
|
168
|
+
expand: 'expand_example' # String |
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
begin
|
|
@@ -222,11 +222,11 @@ end
|
|
|
222
222
|
|
|
223
223
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
224
224
|
|
|
225
|
-
file = File.new(
|
|
225
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
226
226
|
|
|
227
227
|
opts = {
|
|
228
228
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
229
|
-
name:
|
|
229
|
+
name: 'name_example' # String | Name of the document
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
begin
|
|
@@ -281,14 +281,14 @@ end
|
|
|
281
281
|
|
|
282
282
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
283
283
|
|
|
284
|
-
id_user =
|
|
284
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
285
285
|
|
|
286
286
|
id_account = 56 # Integer |
|
|
287
287
|
|
|
288
288
|
id_transaction = 56 # Integer |
|
|
289
289
|
|
|
290
290
|
opts = {
|
|
291
|
-
expand:
|
|
291
|
+
expand: 'expand_example' # String |
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
begin
|
|
@@ -325,7 +325,7 @@ Name | Type | Description | Notes
|
|
|
325
325
|
|
|
326
326
|
|
|
327
327
|
# **users_id_user_accounts_id_account_transactions_id_transaction_documents_get**
|
|
328
|
-
>
|
|
328
|
+
> InlineResponse20028 users_id_user_accounts_id_account_transactions_id_transaction_documents_get(id_user, id_account, id_transaction, opts)
|
|
329
329
|
|
|
330
330
|
Get documents
|
|
331
331
|
|
|
@@ -345,7 +345,7 @@ end
|
|
|
345
345
|
|
|
346
346
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
347
347
|
|
|
348
|
-
id_user =
|
|
348
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
349
349
|
|
|
350
350
|
id_account = 56 # Integer |
|
|
351
351
|
|
|
@@ -354,14 +354,14 @@ id_transaction = 56 # Integer |
|
|
|
354
354
|
opts = {
|
|
355
355
|
limit: 56, # Integer | limit number of results
|
|
356
356
|
offset: 56, # Integer | offset of first result
|
|
357
|
-
min_date: Date.parse(
|
|
358
|
-
max_date: Date.parse(
|
|
357
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
358
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
359
359
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
360
|
-
max_amount: 3.4, # Float |
|
|
360
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
361
361
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
362
|
-
max_timestamp: 3.4, # Float |
|
|
362
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
363
363
|
id_type: 56, # Integer | filter with a document type
|
|
364
|
-
expand:
|
|
364
|
+
expand: 'expand_example' # String |
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
begin
|
|
@@ -385,15 +385,15 @@ Name | Type | Description | Notes
|
|
|
385
385
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
386
386
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
387
387
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
388
|
-
**max_amount** | **Float**|
|
|
388
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
389
389
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
390
|
-
**max_timestamp** | **Float**|
|
|
390
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
391
391
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
392
392
|
**expand** | **String**| | [optional]
|
|
393
393
|
|
|
394
394
|
### Return type
|
|
395
395
|
|
|
396
|
-
[**
|
|
396
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
397
397
|
|
|
398
398
|
### Authorization
|
|
399
399
|
|
|
@@ -427,7 +427,7 @@ end
|
|
|
427
427
|
|
|
428
428
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
429
429
|
|
|
430
|
-
id_user =
|
|
430
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
431
431
|
|
|
432
432
|
id_account = 56 # Integer |
|
|
433
433
|
|
|
@@ -436,7 +436,7 @@ id_transaction = 56 # Integer |
|
|
|
436
436
|
id_document = 56 # Integer |
|
|
437
437
|
|
|
438
438
|
opts = {
|
|
439
|
-
expand:
|
|
439
|
+
expand: 'expand_example' # String |
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
begin
|
|
@@ -494,7 +494,7 @@ end
|
|
|
494
494
|
|
|
495
495
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
496
496
|
|
|
497
|
-
id_user =
|
|
497
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
498
498
|
|
|
499
499
|
id_account = 56 # Integer |
|
|
500
500
|
|
|
@@ -505,16 +505,16 @@ id_document = 56 # Integer |
|
|
|
505
505
|
opts = {
|
|
506
506
|
id_type: 56, # Integer | Type of this document
|
|
507
507
|
id_category: 56, # Integer | Related category
|
|
508
|
-
date: Date.parse(
|
|
509
|
-
duedate: Date.parse(
|
|
508
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
509
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
510
510
|
total_amount: 3.4, # Float | Taxed amount
|
|
511
511
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
512
512
|
vat: 3.4, # Float | VAT amount
|
|
513
513
|
income: 56, # Integer | Is an income or an outcome
|
|
514
514
|
readonly: 56, # Integer | Is this file readonly
|
|
515
|
-
file: File.new(
|
|
516
|
-
name:
|
|
517
|
-
expand:
|
|
515
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
516
|
+
name: 'name_example', # String | Name of the document
|
|
517
|
+
expand: 'expand_example' # String |
|
|
518
518
|
}
|
|
519
519
|
|
|
520
520
|
begin
|
|
@@ -583,15 +583,15 @@ end
|
|
|
583
583
|
|
|
584
584
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
585
585
|
|
|
586
|
-
id_user =
|
|
586
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
587
587
|
|
|
588
588
|
id_account = 56 # Integer |
|
|
589
589
|
|
|
590
590
|
id_transaction = 56 # Integer |
|
|
591
591
|
|
|
592
|
-
date = Date.parse(
|
|
592
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
593
593
|
|
|
594
|
-
duedate = Date.parse(
|
|
594
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
595
595
|
|
|
596
596
|
opts = {
|
|
597
597
|
id_type: 56, # Integer | Type of this document
|
|
@@ -601,10 +601,10 @@ opts = {
|
|
|
601
601
|
vat: 3.4, # Float | VAT amount
|
|
602
602
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
603
603
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
604
|
-
file: File.new(
|
|
604
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
605
605
|
id_ocr: 56, # Integer | Related OCR process
|
|
606
|
-
name:
|
|
607
|
-
expand:
|
|
606
|
+
name: 'name_example', # String | Name of the document
|
|
607
|
+
expand: 'expand_example' # String |
|
|
608
608
|
}
|
|
609
609
|
|
|
610
610
|
begin
|
|
@@ -673,7 +673,7 @@ end
|
|
|
673
673
|
|
|
674
674
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
675
675
|
|
|
676
|
-
id_user =
|
|
676
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
677
677
|
|
|
678
678
|
id_account = 56 # Integer |
|
|
679
679
|
|
|
@@ -682,7 +682,7 @@ id_transaction = 56 # Integer |
|
|
|
682
682
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
683
683
|
|
|
684
684
|
opts = {
|
|
685
|
-
expand:
|
|
685
|
+
expand: 'expand_example' # String |
|
|
686
686
|
}
|
|
687
687
|
|
|
688
688
|
begin
|
|
@@ -740,14 +740,14 @@ end
|
|
|
740
740
|
|
|
741
741
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
742
742
|
|
|
743
|
-
id_user =
|
|
743
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
744
744
|
|
|
745
745
|
id_account = 56 # Integer |
|
|
746
746
|
|
|
747
747
|
id_transactions_cluster = 56 # Integer |
|
|
748
748
|
|
|
749
749
|
opts = {
|
|
750
|
-
expand:
|
|
750
|
+
expand: 'expand_example' # String |
|
|
751
751
|
}
|
|
752
752
|
|
|
753
753
|
begin
|
|
@@ -784,7 +784,7 @@ Name | Type | Description | Notes
|
|
|
784
784
|
|
|
785
785
|
|
|
786
786
|
# **users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get**
|
|
787
|
-
>
|
|
787
|
+
> InlineResponse20028 users_id_user_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_account, id_transactions_cluster, opts)
|
|
788
788
|
|
|
789
789
|
Get documents
|
|
790
790
|
|
|
@@ -804,7 +804,7 @@ end
|
|
|
804
804
|
|
|
805
805
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
806
806
|
|
|
807
|
-
id_user =
|
|
807
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
808
808
|
|
|
809
809
|
id_account = 56 # Integer |
|
|
810
810
|
|
|
@@ -813,14 +813,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
813
813
|
opts = {
|
|
814
814
|
limit: 56, # Integer | limit number of results
|
|
815
815
|
offset: 56, # Integer | offset of first result
|
|
816
|
-
min_date: Date.parse(
|
|
817
|
-
max_date: Date.parse(
|
|
816
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
817
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
818
818
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
819
|
-
max_amount: 3.4, # Float |
|
|
819
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
820
820
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
821
|
-
max_timestamp: 3.4, # Float |
|
|
821
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
822
822
|
id_type: 56, # Integer | filter with a document type
|
|
823
|
-
expand:
|
|
823
|
+
expand: 'expand_example' # String |
|
|
824
824
|
}
|
|
825
825
|
|
|
826
826
|
begin
|
|
@@ -844,15 +844,15 @@ Name | Type | Description | Notes
|
|
|
844
844
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
845
845
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
846
846
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
847
|
-
**max_amount** | **Float**|
|
|
847
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
848
848
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
849
|
-
**max_timestamp** | **Float**|
|
|
849
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
850
850
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
851
851
|
**expand** | **String**| | [optional]
|
|
852
852
|
|
|
853
853
|
### Return type
|
|
854
854
|
|
|
855
|
-
[**
|
|
855
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
856
856
|
|
|
857
857
|
### Authorization
|
|
858
858
|
|
|
@@ -886,7 +886,7 @@ end
|
|
|
886
886
|
|
|
887
887
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
888
888
|
|
|
889
|
-
id_user =
|
|
889
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
890
890
|
|
|
891
891
|
id_account = 56 # Integer |
|
|
892
892
|
|
|
@@ -895,7 +895,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
895
895
|
id_document = 56 # Integer |
|
|
896
896
|
|
|
897
897
|
opts = {
|
|
898
|
-
expand:
|
|
898
|
+
expand: 'expand_example' # String |
|
|
899
899
|
}
|
|
900
900
|
|
|
901
901
|
begin
|
|
@@ -953,7 +953,7 @@ end
|
|
|
953
953
|
|
|
954
954
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
955
955
|
|
|
956
|
-
id_user =
|
|
956
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
957
957
|
|
|
958
958
|
id_account = 56 # Integer |
|
|
959
959
|
|
|
@@ -964,16 +964,16 @@ id_document = 56 # Integer |
|
|
|
964
964
|
opts = {
|
|
965
965
|
id_type: 56, # Integer | Type of this document
|
|
966
966
|
id_category: 56, # Integer | Related category
|
|
967
|
-
date: Date.parse(
|
|
968
|
-
duedate: Date.parse(
|
|
967
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
968
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
969
969
|
total_amount: 3.4, # Float | Taxed amount
|
|
970
970
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
971
971
|
vat: 3.4, # Float | VAT amount
|
|
972
972
|
income: 56, # Integer | Is an income or an outcome
|
|
973
973
|
readonly: 56, # Integer | Is this file readonly
|
|
974
|
-
file: File.new(
|
|
975
|
-
name:
|
|
976
|
-
expand:
|
|
974
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
975
|
+
name: 'name_example', # String | Name of the document
|
|
976
|
+
expand: 'expand_example' # String |
|
|
977
977
|
}
|
|
978
978
|
|
|
979
979
|
begin
|
|
@@ -1042,15 +1042,15 @@ end
|
|
|
1042
1042
|
|
|
1043
1043
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1044
1044
|
|
|
1045
|
-
id_user =
|
|
1045
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1046
1046
|
|
|
1047
1047
|
id_account = 56 # Integer |
|
|
1048
1048
|
|
|
1049
1049
|
id_transactions_cluster = 56 # Integer |
|
|
1050
1050
|
|
|
1051
|
-
date = Date.parse(
|
|
1051
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
1052
1052
|
|
|
1053
|
-
duedate = Date.parse(
|
|
1053
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
1054
1054
|
|
|
1055
1055
|
opts = {
|
|
1056
1056
|
id_type: 56, # Integer | Type of this document
|
|
@@ -1060,10 +1060,10 @@ opts = {
|
|
|
1060
1060
|
vat: 3.4, # Float | VAT amount
|
|
1061
1061
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
1062
1062
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
1063
|
-
file: File.new(
|
|
1063
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1064
1064
|
id_ocr: 56, # Integer | Related OCR process
|
|
1065
|
-
name:
|
|
1066
|
-
expand:
|
|
1065
|
+
name: 'name_example', # String | Name of the document
|
|
1066
|
+
expand: 'expand_example' # String |
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
1069
|
begin
|
|
@@ -1132,7 +1132,7 @@ end
|
|
|
1132
1132
|
|
|
1133
1133
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1134
1134
|
|
|
1135
|
-
id_user =
|
|
1135
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1136
1136
|
|
|
1137
1137
|
id_account = 56 # Integer |
|
|
1138
1138
|
|
|
@@ -1141,7 +1141,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
1141
1141
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
1142
1142
|
|
|
1143
1143
|
opts = {
|
|
1144
|
-
expand:
|
|
1144
|
+
expand: 'expand_example' # String |
|
|
1145
1145
|
}
|
|
1146
1146
|
|
|
1147
1147
|
begin
|
|
@@ -1199,7 +1199,7 @@ end
|
|
|
1199
1199
|
|
|
1200
1200
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1201
1201
|
|
|
1202
|
-
id_user =
|
|
1202
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1203
1203
|
|
|
1204
1204
|
id_connection = 56 # Integer |
|
|
1205
1205
|
|
|
@@ -1208,7 +1208,7 @@ id_account = 56 # Integer |
|
|
|
1208
1208
|
id_transaction = 56 # Integer |
|
|
1209
1209
|
|
|
1210
1210
|
opts = {
|
|
1211
|
-
expand:
|
|
1211
|
+
expand: 'expand_example' # String |
|
|
1212
1212
|
}
|
|
1213
1213
|
|
|
1214
1214
|
begin
|
|
@@ -1246,7 +1246,7 @@ Name | Type | Description | Notes
|
|
|
1246
1246
|
|
|
1247
1247
|
|
|
1248
1248
|
# **users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get**
|
|
1249
|
-
>
|
|
1249
|
+
> InlineResponse20028 users_id_user_connections_id_connection_accounts_id_account_transactions_id_transaction_documents_get(id_user, id_connection, id_account, id_transaction, opts)
|
|
1250
1250
|
|
|
1251
1251
|
Get documents
|
|
1252
1252
|
|
|
@@ -1266,7 +1266,7 @@ end
|
|
|
1266
1266
|
|
|
1267
1267
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1268
1268
|
|
|
1269
|
-
id_user =
|
|
1269
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1270
1270
|
|
|
1271
1271
|
id_connection = 56 # Integer |
|
|
1272
1272
|
|
|
@@ -1277,14 +1277,14 @@ id_transaction = 56 # Integer |
|
|
|
1277
1277
|
opts = {
|
|
1278
1278
|
limit: 56, # Integer | limit number of results
|
|
1279
1279
|
offset: 56, # Integer | offset of first result
|
|
1280
|
-
min_date: Date.parse(
|
|
1281
|
-
max_date: Date.parse(
|
|
1280
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
1281
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
1282
1282
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
1283
|
-
max_amount: 3.4, # Float |
|
|
1283
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
1284
1284
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
1285
|
-
max_timestamp: 3.4, # Float |
|
|
1285
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
1286
1286
|
id_type: 56, # Integer | filter with a document type
|
|
1287
|
-
expand:
|
|
1287
|
+
expand: 'expand_example' # String |
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
1290
|
begin
|
|
@@ -1309,15 +1309,15 @@ Name | Type | Description | Notes
|
|
|
1309
1309
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
1310
1310
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
1311
1311
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
1312
|
-
**max_amount** | **Float**|
|
|
1312
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
1313
1313
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
1314
|
-
**max_timestamp** | **Float**|
|
|
1314
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
1315
1315
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
1316
1316
|
**expand** | **String**| | [optional]
|
|
1317
1317
|
|
|
1318
1318
|
### Return type
|
|
1319
1319
|
|
|
1320
|
-
[**
|
|
1320
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
1321
1321
|
|
|
1322
1322
|
### Authorization
|
|
1323
1323
|
|
|
@@ -1351,7 +1351,7 @@ end
|
|
|
1351
1351
|
|
|
1352
1352
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1353
1353
|
|
|
1354
|
-
id_user =
|
|
1354
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1355
1355
|
|
|
1356
1356
|
id_connection = 56 # Integer |
|
|
1357
1357
|
|
|
@@ -1362,7 +1362,7 @@ id_transaction = 56 # Integer |
|
|
|
1362
1362
|
id_document = 56 # Integer |
|
|
1363
1363
|
|
|
1364
1364
|
opts = {
|
|
1365
|
-
expand:
|
|
1365
|
+
expand: 'expand_example' # String |
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
1368
|
begin
|
|
@@ -1421,7 +1421,7 @@ end
|
|
|
1421
1421
|
|
|
1422
1422
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1423
1423
|
|
|
1424
|
-
id_user =
|
|
1424
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1425
1425
|
|
|
1426
1426
|
id_connection = 56 # Integer |
|
|
1427
1427
|
|
|
@@ -1434,16 +1434,16 @@ id_document = 56 # Integer |
|
|
|
1434
1434
|
opts = {
|
|
1435
1435
|
id_type: 56, # Integer | Type of this document
|
|
1436
1436
|
id_category: 56, # Integer | Related category
|
|
1437
|
-
date: Date.parse(
|
|
1438
|
-
duedate: Date.parse(
|
|
1437
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
1438
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
1439
1439
|
total_amount: 3.4, # Float | Taxed amount
|
|
1440
1440
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
1441
1441
|
vat: 3.4, # Float | VAT amount
|
|
1442
1442
|
income: 56, # Integer | Is an income or an outcome
|
|
1443
1443
|
readonly: 56, # Integer | Is this file readonly
|
|
1444
|
-
file: File.new(
|
|
1445
|
-
name:
|
|
1446
|
-
expand:
|
|
1444
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1445
|
+
name: 'name_example', # String | Name of the document
|
|
1446
|
+
expand: 'expand_example' # String |
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
1449
1449
|
begin
|
|
@@ -1513,7 +1513,7 @@ end
|
|
|
1513
1513
|
|
|
1514
1514
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1515
1515
|
|
|
1516
|
-
id_user =
|
|
1516
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1517
1517
|
|
|
1518
1518
|
id_connection = 56 # Integer |
|
|
1519
1519
|
|
|
@@ -1521,9 +1521,9 @@ id_account = 56 # Integer |
|
|
|
1521
1521
|
|
|
1522
1522
|
id_transaction = 56 # Integer |
|
|
1523
1523
|
|
|
1524
|
-
date = Date.parse(
|
|
1524
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
1525
1525
|
|
|
1526
|
-
duedate = Date.parse(
|
|
1526
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
1527
1527
|
|
|
1528
1528
|
opts = {
|
|
1529
1529
|
id_type: 56, # Integer | Type of this document
|
|
@@ -1533,10 +1533,10 @@ opts = {
|
|
|
1533
1533
|
vat: 3.4, # Float | VAT amount
|
|
1534
1534
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
1535
1535
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
1536
|
-
file: File.new(
|
|
1536
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1537
1537
|
id_ocr: 56, # Integer | Related OCR process
|
|
1538
|
-
name:
|
|
1539
|
-
expand:
|
|
1538
|
+
name: 'name_example', # String | Name of the document
|
|
1539
|
+
expand: 'expand_example' # String |
|
|
1540
1540
|
}
|
|
1541
1541
|
|
|
1542
1542
|
begin
|
|
@@ -1606,7 +1606,7 @@ end
|
|
|
1606
1606
|
|
|
1607
1607
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1608
1608
|
|
|
1609
|
-
id_user =
|
|
1609
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1610
1610
|
|
|
1611
1611
|
id_connection = 56 # Integer |
|
|
1612
1612
|
|
|
@@ -1617,7 +1617,7 @@ id_transaction = 56 # Integer |
|
|
|
1617
1617
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
1618
1618
|
|
|
1619
1619
|
opts = {
|
|
1620
|
-
expand:
|
|
1620
|
+
expand: 'expand_example' # String |
|
|
1621
1621
|
}
|
|
1622
1622
|
|
|
1623
1623
|
begin
|
|
@@ -1676,7 +1676,7 @@ end
|
|
|
1676
1676
|
|
|
1677
1677
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1678
1678
|
|
|
1679
|
-
id_user =
|
|
1679
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1680
1680
|
|
|
1681
1681
|
id_connection = 56 # Integer |
|
|
1682
1682
|
|
|
@@ -1685,7 +1685,7 @@ id_account = 56 # Integer |
|
|
|
1685
1685
|
id_transactions_cluster = 56 # Integer |
|
|
1686
1686
|
|
|
1687
1687
|
opts = {
|
|
1688
|
-
expand:
|
|
1688
|
+
expand: 'expand_example' # String |
|
|
1689
1689
|
}
|
|
1690
1690
|
|
|
1691
1691
|
begin
|
|
@@ -1723,7 +1723,7 @@ Name | Type | Description | Notes
|
|
|
1723
1723
|
|
|
1724
1724
|
|
|
1725
1725
|
# **users_id_user_connections_id_connection_accounts_id_account_transactionsclusters_id_transactions_cluster_documents_get**
|
|
1726
|
-
>
|
|
1726
|
+
> 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)
|
|
1727
1727
|
|
|
1728
1728
|
Get documents
|
|
1729
1729
|
|
|
@@ -1743,7 +1743,7 @@ end
|
|
|
1743
1743
|
|
|
1744
1744
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1745
1745
|
|
|
1746
|
-
id_user =
|
|
1746
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1747
1747
|
|
|
1748
1748
|
id_connection = 56 # Integer |
|
|
1749
1749
|
|
|
@@ -1754,14 +1754,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
1754
1754
|
opts = {
|
|
1755
1755
|
limit: 56, # Integer | limit number of results
|
|
1756
1756
|
offset: 56, # Integer | offset of first result
|
|
1757
|
-
min_date: Date.parse(
|
|
1758
|
-
max_date: Date.parse(
|
|
1757
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
1758
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
1759
1759
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
1760
|
-
max_amount: 3.4, # Float |
|
|
1760
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
1761
1761
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
1762
|
-
max_timestamp: 3.4, # Float |
|
|
1762
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
1763
1763
|
id_type: 56, # Integer | filter with a document type
|
|
1764
|
-
expand:
|
|
1764
|
+
expand: 'expand_example' # String |
|
|
1765
1765
|
}
|
|
1766
1766
|
|
|
1767
1767
|
begin
|
|
@@ -1786,15 +1786,15 @@ Name | Type | Description | Notes
|
|
|
1786
1786
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
1787
1787
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
1788
1788
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
1789
|
-
**max_amount** | **Float**|
|
|
1789
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
1790
1790
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
1791
|
-
**max_timestamp** | **Float**|
|
|
1791
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
1792
1792
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
1793
1793
|
**expand** | **String**| | [optional]
|
|
1794
1794
|
|
|
1795
1795
|
### Return type
|
|
1796
1796
|
|
|
1797
|
-
[**
|
|
1797
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
1798
1798
|
|
|
1799
1799
|
### Authorization
|
|
1800
1800
|
|
|
@@ -1828,7 +1828,7 @@ end
|
|
|
1828
1828
|
|
|
1829
1829
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1830
1830
|
|
|
1831
|
-
id_user =
|
|
1831
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1832
1832
|
|
|
1833
1833
|
id_connection = 56 # Integer |
|
|
1834
1834
|
|
|
@@ -1839,7 +1839,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
1839
1839
|
id_document = 56 # Integer |
|
|
1840
1840
|
|
|
1841
1841
|
opts = {
|
|
1842
|
-
expand:
|
|
1842
|
+
expand: 'expand_example' # String |
|
|
1843
1843
|
}
|
|
1844
1844
|
|
|
1845
1845
|
begin
|
|
@@ -1898,7 +1898,7 @@ end
|
|
|
1898
1898
|
|
|
1899
1899
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1900
1900
|
|
|
1901
|
-
id_user =
|
|
1901
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1902
1902
|
|
|
1903
1903
|
id_connection = 56 # Integer |
|
|
1904
1904
|
|
|
@@ -1911,16 +1911,16 @@ id_document = 56 # Integer |
|
|
|
1911
1911
|
opts = {
|
|
1912
1912
|
id_type: 56, # Integer | Type of this document
|
|
1913
1913
|
id_category: 56, # Integer | Related category
|
|
1914
|
-
date: Date.parse(
|
|
1915
|
-
duedate: Date.parse(
|
|
1914
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
1915
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
1916
1916
|
total_amount: 3.4, # Float | Taxed amount
|
|
1917
1917
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
1918
1918
|
vat: 3.4, # Float | VAT amount
|
|
1919
1919
|
income: 56, # Integer | Is an income or an outcome
|
|
1920
1920
|
readonly: 56, # Integer | Is this file readonly
|
|
1921
|
-
file: File.new(
|
|
1922
|
-
name:
|
|
1923
|
-
expand:
|
|
1921
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
1922
|
+
name: 'name_example', # String | Name of the document
|
|
1923
|
+
expand: 'expand_example' # String |
|
|
1924
1924
|
}
|
|
1925
1925
|
|
|
1926
1926
|
begin
|
|
@@ -1990,7 +1990,7 @@ end
|
|
|
1990
1990
|
|
|
1991
1991
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
1992
1992
|
|
|
1993
|
-
id_user =
|
|
1993
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1994
1994
|
|
|
1995
1995
|
id_connection = 56 # Integer |
|
|
1996
1996
|
|
|
@@ -1998,9 +1998,9 @@ id_account = 56 # Integer |
|
|
|
1998
1998
|
|
|
1999
1999
|
id_transactions_cluster = 56 # Integer |
|
|
2000
2000
|
|
|
2001
|
-
date = Date.parse(
|
|
2001
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
2002
2002
|
|
|
2003
|
-
duedate = Date.parse(
|
|
2003
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
2004
2004
|
|
|
2005
2005
|
opts = {
|
|
2006
2006
|
id_type: 56, # Integer | Type of this document
|
|
@@ -2010,10 +2010,10 @@ opts = {
|
|
|
2010
2010
|
vat: 3.4, # Float | VAT amount
|
|
2011
2011
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
2012
2012
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
2013
|
-
file: File.new(
|
|
2013
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2014
2014
|
id_ocr: 56, # Integer | Related OCR process
|
|
2015
|
-
name:
|
|
2016
|
-
expand:
|
|
2015
|
+
name: 'name_example', # String | Name of the document
|
|
2016
|
+
expand: 'expand_example' # String |
|
|
2017
2017
|
}
|
|
2018
2018
|
|
|
2019
2019
|
begin
|
|
@@ -2083,7 +2083,7 @@ end
|
|
|
2083
2083
|
|
|
2084
2084
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2085
2085
|
|
|
2086
|
-
id_user =
|
|
2086
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2087
2087
|
|
|
2088
2088
|
id_connection = 56 # Integer |
|
|
2089
2089
|
|
|
@@ -2094,7 +2094,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
2094
2094
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
2095
2095
|
|
|
2096
2096
|
opts = {
|
|
2097
|
-
expand:
|
|
2097
|
+
expand: 'expand_example' # String |
|
|
2098
2098
|
}
|
|
2099
2099
|
|
|
2100
2100
|
begin
|
|
@@ -2127,7 +2127,7 @@ Name | Type | Description | Notes
|
|
|
2127
2127
|
|
|
2128
2128
|
### HTTP request headers
|
|
2129
2129
|
|
|
2130
|
-
- **Content-Type**:
|
|
2130
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
2131
2131
|
- **Accept**: application/json
|
|
2132
2132
|
|
|
2133
2133
|
|
|
@@ -2153,12 +2153,12 @@ end
|
|
|
2153
2153
|
|
|
2154
2154
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2155
2155
|
|
|
2156
|
-
id_user =
|
|
2156
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2157
2157
|
|
|
2158
2158
|
id_connection = 56 # Integer |
|
|
2159
2159
|
|
|
2160
2160
|
opts = {
|
|
2161
|
-
expand:
|
|
2161
|
+
expand: 'expand_example' # String |
|
|
2162
2162
|
}
|
|
2163
2163
|
|
|
2164
2164
|
begin
|
|
@@ -2194,7 +2194,7 @@ Name | Type | Description | Notes
|
|
|
2194
2194
|
|
|
2195
2195
|
|
|
2196
2196
|
# **users_id_user_connections_id_connection_documents_get**
|
|
2197
|
-
>
|
|
2197
|
+
> InlineResponse20028 users_id_user_connections_id_connection_documents_get(id_user, id_connection, opts)
|
|
2198
2198
|
|
|
2199
2199
|
Get documents
|
|
2200
2200
|
|
|
@@ -2214,21 +2214,21 @@ end
|
|
|
2214
2214
|
|
|
2215
2215
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2216
2216
|
|
|
2217
|
-
id_user =
|
|
2217
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2218
2218
|
|
|
2219
2219
|
id_connection = 56 # Integer |
|
|
2220
2220
|
|
|
2221
2221
|
opts = {
|
|
2222
2222
|
limit: 56, # Integer | limit number of results
|
|
2223
2223
|
offset: 56, # Integer | offset of first result
|
|
2224
|
-
min_date: Date.parse(
|
|
2225
|
-
max_date: Date.parse(
|
|
2224
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
2225
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
2226
2226
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
2227
|
-
max_amount: 3.4, # Float |
|
|
2227
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
2228
2228
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
2229
|
-
max_timestamp: 3.4, # Float |
|
|
2229
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
2230
2230
|
id_type: 56, # Integer | filter with a document type
|
|
2231
|
-
expand:
|
|
2231
|
+
expand: 'expand_example' # String |
|
|
2232
2232
|
}
|
|
2233
2233
|
|
|
2234
2234
|
begin
|
|
@@ -2251,15 +2251,15 @@ Name | Type | Description | Notes
|
|
|
2251
2251
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
2252
2252
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
2253
2253
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
2254
|
-
**max_amount** | **Float**|
|
|
2254
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
2255
2255
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
2256
|
-
**max_timestamp** | **Float**|
|
|
2256
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
2257
2257
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
2258
2258
|
**expand** | **String**| | [optional]
|
|
2259
2259
|
|
|
2260
2260
|
### Return type
|
|
2261
2261
|
|
|
2262
|
-
[**
|
|
2262
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
2263
2263
|
|
|
2264
2264
|
### Authorization
|
|
2265
2265
|
|
|
@@ -2293,14 +2293,14 @@ end
|
|
|
2293
2293
|
|
|
2294
2294
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2295
2295
|
|
|
2296
|
-
id_user =
|
|
2296
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2297
2297
|
|
|
2298
2298
|
id_connection = 56 # Integer |
|
|
2299
2299
|
|
|
2300
2300
|
id_document = 56 # Integer |
|
|
2301
2301
|
|
|
2302
2302
|
opts = {
|
|
2303
|
-
expand:
|
|
2303
|
+
expand: 'expand_example' # String |
|
|
2304
2304
|
}
|
|
2305
2305
|
|
|
2306
2306
|
begin
|
|
@@ -2357,7 +2357,7 @@ end
|
|
|
2357
2357
|
|
|
2358
2358
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2359
2359
|
|
|
2360
|
-
id_user =
|
|
2360
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2361
2361
|
|
|
2362
2362
|
id_connection = 56 # Integer |
|
|
2363
2363
|
|
|
@@ -2366,16 +2366,16 @@ id_document = 56 # Integer |
|
|
|
2366
2366
|
opts = {
|
|
2367
2367
|
id_type: 56, # Integer | Type of this document
|
|
2368
2368
|
id_category: 56, # Integer | Related category
|
|
2369
|
-
date: Date.parse(
|
|
2370
|
-
duedate: Date.parse(
|
|
2369
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
2370
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
2371
2371
|
total_amount: 3.4, # Float | Taxed amount
|
|
2372
2372
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
2373
2373
|
vat: 3.4, # Float | VAT amount
|
|
2374
2374
|
income: 56, # Integer | Is an income or an outcome
|
|
2375
2375
|
readonly: 56, # Integer | Is this file readonly
|
|
2376
|
-
file: File.new(
|
|
2377
|
-
name:
|
|
2378
|
-
expand:
|
|
2376
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2377
|
+
name: 'name_example', # String | Name of the document
|
|
2378
|
+
expand: 'expand_example' # String |
|
|
2379
2379
|
}
|
|
2380
2380
|
|
|
2381
2381
|
begin
|
|
@@ -2443,13 +2443,13 @@ end
|
|
|
2443
2443
|
|
|
2444
2444
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2445
2445
|
|
|
2446
|
-
id_user =
|
|
2446
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2447
2447
|
|
|
2448
2448
|
id_connection = 56 # Integer |
|
|
2449
2449
|
|
|
2450
|
-
date = Date.parse(
|
|
2450
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
2451
2451
|
|
|
2452
|
-
duedate = Date.parse(
|
|
2452
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
2453
2453
|
|
|
2454
2454
|
opts = {
|
|
2455
2455
|
id_type: 56, # Integer | Type of this document
|
|
@@ -2459,10 +2459,10 @@ opts = {
|
|
|
2459
2459
|
vat: 3.4, # Float | VAT amount
|
|
2460
2460
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
2461
2461
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
2462
|
-
file: File.new(
|
|
2462
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2463
2463
|
id_ocr: 56, # Integer | Related OCR process
|
|
2464
|
-
name:
|
|
2465
|
-
expand:
|
|
2464
|
+
name: 'name_example', # String | Name of the document
|
|
2465
|
+
expand: 'expand_example' # String |
|
|
2466
2466
|
}
|
|
2467
2467
|
|
|
2468
2468
|
begin
|
|
@@ -2530,14 +2530,14 @@ end
|
|
|
2530
2530
|
|
|
2531
2531
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2532
2532
|
|
|
2533
|
-
id_user =
|
|
2533
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2534
2534
|
|
|
2535
2535
|
id_connection = 56 # Integer |
|
|
2536
2536
|
|
|
2537
2537
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
2538
2538
|
|
|
2539
2539
|
opts = {
|
|
2540
|
-
expand:
|
|
2540
|
+
expand: 'expand_example' # String |
|
|
2541
2541
|
}
|
|
2542
2542
|
|
|
2543
2543
|
begin
|
|
@@ -2594,14 +2594,14 @@ end
|
|
|
2594
2594
|
|
|
2595
2595
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2596
2596
|
|
|
2597
|
-
id_user =
|
|
2597
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2598
2598
|
|
|
2599
2599
|
id_connection = 56 # Integer |
|
|
2600
2600
|
|
|
2601
2601
|
id_subscription = 56 # Integer |
|
|
2602
2602
|
|
|
2603
2603
|
opts = {
|
|
2604
|
-
expand:
|
|
2604
|
+
expand: 'expand_example' # String |
|
|
2605
2605
|
}
|
|
2606
2606
|
|
|
2607
2607
|
begin
|
|
@@ -2638,7 +2638,7 @@ Name | Type | Description | Notes
|
|
|
2638
2638
|
|
|
2639
2639
|
|
|
2640
2640
|
# **users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get**
|
|
2641
|
-
>
|
|
2641
|
+
> InlineResponse20028 users_id_user_connections_id_connection_subscriptions_id_subscription_documents_get(id_user, id_connection, id_subscription, opts)
|
|
2642
2642
|
|
|
2643
2643
|
Get documents
|
|
2644
2644
|
|
|
@@ -2658,7 +2658,7 @@ end
|
|
|
2658
2658
|
|
|
2659
2659
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2660
2660
|
|
|
2661
|
-
id_user =
|
|
2661
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2662
2662
|
|
|
2663
2663
|
id_connection = 56 # Integer |
|
|
2664
2664
|
|
|
@@ -2667,14 +2667,14 @@ id_subscription = 56 # Integer |
|
|
|
2667
2667
|
opts = {
|
|
2668
2668
|
limit: 56, # Integer | limit number of results
|
|
2669
2669
|
offset: 56, # Integer | offset of first result
|
|
2670
|
-
min_date: Date.parse(
|
|
2671
|
-
max_date: Date.parse(
|
|
2670
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
2671
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
2672
2672
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
2673
|
-
max_amount: 3.4, # Float |
|
|
2673
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
2674
2674
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
2675
|
-
max_timestamp: 3.4, # Float |
|
|
2675
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
2676
2676
|
id_type: 56, # Integer | filter with a document type
|
|
2677
|
-
expand:
|
|
2677
|
+
expand: 'expand_example' # String |
|
|
2678
2678
|
}
|
|
2679
2679
|
|
|
2680
2680
|
begin
|
|
@@ -2698,15 +2698,15 @@ Name | Type | Description | Notes
|
|
|
2698
2698
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
2699
2699
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
2700
2700
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
2701
|
-
**max_amount** | **Float**|
|
|
2701
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
2702
2702
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
2703
|
-
**max_timestamp** | **Float**|
|
|
2703
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
2704
2704
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
2705
2705
|
**expand** | **String**| | [optional]
|
|
2706
2706
|
|
|
2707
2707
|
### Return type
|
|
2708
2708
|
|
|
2709
|
-
[**
|
|
2709
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
2710
2710
|
|
|
2711
2711
|
### Authorization
|
|
2712
2712
|
|
|
@@ -2740,7 +2740,7 @@ end
|
|
|
2740
2740
|
|
|
2741
2741
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2742
2742
|
|
|
2743
|
-
id_user =
|
|
2743
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2744
2744
|
|
|
2745
2745
|
id_connection = 56 # Integer |
|
|
2746
2746
|
|
|
@@ -2749,7 +2749,7 @@ id_subscription = 56 # Integer |
|
|
|
2749
2749
|
id_document = 56 # Integer |
|
|
2750
2750
|
|
|
2751
2751
|
opts = {
|
|
2752
|
-
expand:
|
|
2752
|
+
expand: 'expand_example' # String |
|
|
2753
2753
|
}
|
|
2754
2754
|
|
|
2755
2755
|
begin
|
|
@@ -2807,7 +2807,7 @@ end
|
|
|
2807
2807
|
|
|
2808
2808
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2809
2809
|
|
|
2810
|
-
id_user =
|
|
2810
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2811
2811
|
|
|
2812
2812
|
id_connection = 56 # Integer |
|
|
2813
2813
|
|
|
@@ -2818,16 +2818,16 @@ id_document = 56 # Integer |
|
|
|
2818
2818
|
opts = {
|
|
2819
2819
|
id_type: 56, # Integer | Type of this document
|
|
2820
2820
|
id_category: 56, # Integer | Related category
|
|
2821
|
-
date: Date.parse(
|
|
2822
|
-
duedate: Date.parse(
|
|
2821
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
2822
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
2823
2823
|
total_amount: 3.4, # Float | Taxed amount
|
|
2824
2824
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
2825
2825
|
vat: 3.4, # Float | VAT amount
|
|
2826
2826
|
income: 56, # Integer | Is an income or an outcome
|
|
2827
2827
|
readonly: 56, # Integer | Is this file readonly
|
|
2828
|
-
file: File.new(
|
|
2829
|
-
name:
|
|
2830
|
-
expand:
|
|
2828
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2829
|
+
name: 'name_example', # String | Name of the document
|
|
2830
|
+
expand: 'expand_example' # String |
|
|
2831
2831
|
}
|
|
2832
2832
|
|
|
2833
2833
|
begin
|
|
@@ -2896,15 +2896,15 @@ end
|
|
|
2896
2896
|
|
|
2897
2897
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2898
2898
|
|
|
2899
|
-
id_user =
|
|
2899
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2900
2900
|
|
|
2901
2901
|
id_connection = 56 # Integer |
|
|
2902
2902
|
|
|
2903
2903
|
id_subscription = 56 # Integer |
|
|
2904
2904
|
|
|
2905
|
-
date = Date.parse(
|
|
2905
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
2906
2906
|
|
|
2907
|
-
duedate = Date.parse(
|
|
2907
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
2908
2908
|
|
|
2909
2909
|
opts = {
|
|
2910
2910
|
id_type: 56, # Integer | Type of this document
|
|
@@ -2914,10 +2914,10 @@ opts = {
|
|
|
2914
2914
|
vat: 3.4, # Float | VAT amount
|
|
2915
2915
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
2916
2916
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
2917
|
-
file: File.new(
|
|
2917
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
2918
2918
|
id_ocr: 56, # Integer | Related OCR process
|
|
2919
|
-
name:
|
|
2920
|
-
expand:
|
|
2919
|
+
name: 'name_example', # String | Name of the document
|
|
2920
|
+
expand: 'expand_example' # String |
|
|
2921
2921
|
}
|
|
2922
2922
|
|
|
2923
2923
|
begin
|
|
@@ -2986,7 +2986,7 @@ end
|
|
|
2986
2986
|
|
|
2987
2987
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
2988
2988
|
|
|
2989
|
-
id_user =
|
|
2989
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2990
2990
|
|
|
2991
2991
|
id_connection = 56 # Integer |
|
|
2992
2992
|
|
|
@@ -2995,7 +2995,7 @@ id_subscription = 56 # Integer |
|
|
|
2995
2995
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
2996
2996
|
|
|
2997
2997
|
opts = {
|
|
2998
|
-
expand:
|
|
2998
|
+
expand: 'expand_example' # String |
|
|
2999
2999
|
}
|
|
3000
3000
|
|
|
3001
3001
|
begin
|
|
@@ -3053,14 +3053,14 @@ end
|
|
|
3053
3053
|
|
|
3054
3054
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3055
3055
|
|
|
3056
|
-
id_user =
|
|
3056
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3057
3057
|
|
|
3058
3058
|
id_connection = 56 # Integer |
|
|
3059
3059
|
|
|
3060
3060
|
id_transaction = 56 # Integer |
|
|
3061
3061
|
|
|
3062
3062
|
opts = {
|
|
3063
|
-
expand:
|
|
3063
|
+
expand: 'expand_example' # String |
|
|
3064
3064
|
}
|
|
3065
3065
|
|
|
3066
3066
|
begin
|
|
@@ -3097,7 +3097,7 @@ Name | Type | Description | Notes
|
|
|
3097
3097
|
|
|
3098
3098
|
|
|
3099
3099
|
# **users_id_user_connections_id_connection_transactions_id_transaction_documents_get**
|
|
3100
|
-
>
|
|
3100
|
+
> InlineResponse20028 users_id_user_connections_id_connection_transactions_id_transaction_documents_get(id_user, id_connection, id_transaction, opts)
|
|
3101
3101
|
|
|
3102
3102
|
Get documents
|
|
3103
3103
|
|
|
@@ -3117,7 +3117,7 @@ end
|
|
|
3117
3117
|
|
|
3118
3118
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3119
3119
|
|
|
3120
|
-
id_user =
|
|
3120
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3121
3121
|
|
|
3122
3122
|
id_connection = 56 # Integer |
|
|
3123
3123
|
|
|
@@ -3126,14 +3126,14 @@ id_transaction = 56 # Integer |
|
|
|
3126
3126
|
opts = {
|
|
3127
3127
|
limit: 56, # Integer | limit number of results
|
|
3128
3128
|
offset: 56, # Integer | offset of first result
|
|
3129
|
-
min_date: Date.parse(
|
|
3130
|
-
max_date: Date.parse(
|
|
3129
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
3130
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
3131
3131
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
3132
|
-
max_amount: 3.4, # Float |
|
|
3132
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
3133
3133
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
3134
|
-
max_timestamp: 3.4, # Float |
|
|
3134
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
3135
3135
|
id_type: 56, # Integer | filter with a document type
|
|
3136
|
-
expand:
|
|
3136
|
+
expand: 'expand_example' # String |
|
|
3137
3137
|
}
|
|
3138
3138
|
|
|
3139
3139
|
begin
|
|
@@ -3157,15 +3157,15 @@ Name | Type | Description | Notes
|
|
|
3157
3157
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
3158
3158
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
3159
3159
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
3160
|
-
**max_amount** | **Float**|
|
|
3160
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
3161
3161
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
3162
|
-
**max_timestamp** | **Float**|
|
|
3162
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
3163
3163
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
3164
3164
|
**expand** | **String**| | [optional]
|
|
3165
3165
|
|
|
3166
3166
|
### Return type
|
|
3167
3167
|
|
|
3168
|
-
[**
|
|
3168
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
3169
3169
|
|
|
3170
3170
|
### Authorization
|
|
3171
3171
|
|
|
@@ -3199,7 +3199,7 @@ end
|
|
|
3199
3199
|
|
|
3200
3200
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3201
3201
|
|
|
3202
|
-
id_user =
|
|
3202
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3203
3203
|
|
|
3204
3204
|
id_connection = 56 # Integer |
|
|
3205
3205
|
|
|
@@ -3208,7 +3208,7 @@ id_transaction = 56 # Integer |
|
|
|
3208
3208
|
id_document = 56 # Integer |
|
|
3209
3209
|
|
|
3210
3210
|
opts = {
|
|
3211
|
-
expand:
|
|
3211
|
+
expand: 'expand_example' # String |
|
|
3212
3212
|
}
|
|
3213
3213
|
|
|
3214
3214
|
begin
|
|
@@ -3266,7 +3266,7 @@ end
|
|
|
3266
3266
|
|
|
3267
3267
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3268
3268
|
|
|
3269
|
-
id_user =
|
|
3269
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3270
3270
|
|
|
3271
3271
|
id_connection = 56 # Integer |
|
|
3272
3272
|
|
|
@@ -3277,16 +3277,16 @@ id_document = 56 # Integer |
|
|
|
3277
3277
|
opts = {
|
|
3278
3278
|
id_type: 56, # Integer | Type of this document
|
|
3279
3279
|
id_category: 56, # Integer | Related category
|
|
3280
|
-
date: Date.parse(
|
|
3281
|
-
duedate: Date.parse(
|
|
3280
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
3281
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
3282
3282
|
total_amount: 3.4, # Float | Taxed amount
|
|
3283
3283
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
3284
3284
|
vat: 3.4, # Float | VAT amount
|
|
3285
3285
|
income: 56, # Integer | Is an income or an outcome
|
|
3286
3286
|
readonly: 56, # Integer | Is this file readonly
|
|
3287
|
-
file: File.new(
|
|
3288
|
-
name:
|
|
3289
|
-
expand:
|
|
3287
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3288
|
+
name: 'name_example', # String | Name of the document
|
|
3289
|
+
expand: 'expand_example' # String |
|
|
3290
3290
|
}
|
|
3291
3291
|
|
|
3292
3292
|
begin
|
|
@@ -3355,15 +3355,15 @@ end
|
|
|
3355
3355
|
|
|
3356
3356
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3357
3357
|
|
|
3358
|
-
id_user =
|
|
3358
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3359
3359
|
|
|
3360
3360
|
id_connection = 56 # Integer |
|
|
3361
3361
|
|
|
3362
3362
|
id_transaction = 56 # Integer |
|
|
3363
3363
|
|
|
3364
|
-
date = Date.parse(
|
|
3364
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
3365
3365
|
|
|
3366
|
-
duedate = Date.parse(
|
|
3366
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
3367
3367
|
|
|
3368
3368
|
opts = {
|
|
3369
3369
|
id_type: 56, # Integer | Type of this document
|
|
@@ -3373,10 +3373,10 @@ opts = {
|
|
|
3373
3373
|
vat: 3.4, # Float | VAT amount
|
|
3374
3374
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
3375
3375
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
3376
|
-
file: File.new(
|
|
3376
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3377
3377
|
id_ocr: 56, # Integer | Related OCR process
|
|
3378
|
-
name:
|
|
3379
|
-
expand:
|
|
3378
|
+
name: 'name_example', # String | Name of the document
|
|
3379
|
+
expand: 'expand_example' # String |
|
|
3380
3380
|
}
|
|
3381
3381
|
|
|
3382
3382
|
begin
|
|
@@ -3445,7 +3445,7 @@ end
|
|
|
3445
3445
|
|
|
3446
3446
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3447
3447
|
|
|
3448
|
-
id_user =
|
|
3448
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3449
3449
|
|
|
3450
3450
|
id_connection = 56 # Integer |
|
|
3451
3451
|
|
|
@@ -3454,7 +3454,7 @@ id_transaction = 56 # Integer |
|
|
|
3454
3454
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
3455
3455
|
|
|
3456
3456
|
opts = {
|
|
3457
|
-
expand:
|
|
3457
|
+
expand: 'expand_example' # String |
|
|
3458
3458
|
}
|
|
3459
3459
|
|
|
3460
3460
|
begin
|
|
@@ -3512,14 +3512,14 @@ end
|
|
|
3512
3512
|
|
|
3513
3513
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3514
3514
|
|
|
3515
|
-
id_user =
|
|
3515
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3516
3516
|
|
|
3517
3517
|
id_connection = 56 # Integer |
|
|
3518
3518
|
|
|
3519
3519
|
id_transactions_cluster = 56 # Integer |
|
|
3520
3520
|
|
|
3521
3521
|
opts = {
|
|
3522
|
-
expand:
|
|
3522
|
+
expand: 'expand_example' # String |
|
|
3523
3523
|
}
|
|
3524
3524
|
|
|
3525
3525
|
begin
|
|
@@ -3556,7 +3556,7 @@ Name | Type | Description | Notes
|
|
|
3556
3556
|
|
|
3557
3557
|
|
|
3558
3558
|
# **users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get**
|
|
3559
|
-
>
|
|
3559
|
+
> InlineResponse20028 users_id_user_connections_id_connection_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_connection, id_transactions_cluster, opts)
|
|
3560
3560
|
|
|
3561
3561
|
Get documents
|
|
3562
3562
|
|
|
@@ -3576,7 +3576,7 @@ end
|
|
|
3576
3576
|
|
|
3577
3577
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3578
3578
|
|
|
3579
|
-
id_user =
|
|
3579
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3580
3580
|
|
|
3581
3581
|
id_connection = 56 # Integer |
|
|
3582
3582
|
|
|
@@ -3585,14 +3585,14 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3585
3585
|
opts = {
|
|
3586
3586
|
limit: 56, # Integer | limit number of results
|
|
3587
3587
|
offset: 56, # Integer | offset of first result
|
|
3588
|
-
min_date: Date.parse(
|
|
3589
|
-
max_date: Date.parse(
|
|
3588
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
3589
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
3590
3590
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
3591
|
-
max_amount: 3.4, # Float |
|
|
3591
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
3592
3592
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
3593
|
-
max_timestamp: 3.4, # Float |
|
|
3593
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
3594
3594
|
id_type: 56, # Integer | filter with a document type
|
|
3595
|
-
expand:
|
|
3595
|
+
expand: 'expand_example' # String |
|
|
3596
3596
|
}
|
|
3597
3597
|
|
|
3598
3598
|
begin
|
|
@@ -3616,15 +3616,15 @@ Name | Type | Description | Notes
|
|
|
3616
3616
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
3617
3617
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
3618
3618
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
3619
|
-
**max_amount** | **Float**|
|
|
3619
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
3620
3620
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
3621
|
-
**max_timestamp** | **Float**|
|
|
3621
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
3622
3622
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
3623
3623
|
**expand** | **String**| | [optional]
|
|
3624
3624
|
|
|
3625
3625
|
### Return type
|
|
3626
3626
|
|
|
3627
|
-
[**
|
|
3627
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
3628
3628
|
|
|
3629
3629
|
### Authorization
|
|
3630
3630
|
|
|
@@ -3658,7 +3658,7 @@ end
|
|
|
3658
3658
|
|
|
3659
3659
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3660
3660
|
|
|
3661
|
-
id_user =
|
|
3661
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3662
3662
|
|
|
3663
3663
|
id_connection = 56 # Integer |
|
|
3664
3664
|
|
|
@@ -3667,7 +3667,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3667
3667
|
id_document = 56 # Integer |
|
|
3668
3668
|
|
|
3669
3669
|
opts = {
|
|
3670
|
-
expand:
|
|
3670
|
+
expand: 'expand_example' # String |
|
|
3671
3671
|
}
|
|
3672
3672
|
|
|
3673
3673
|
begin
|
|
@@ -3725,7 +3725,7 @@ end
|
|
|
3725
3725
|
|
|
3726
3726
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3727
3727
|
|
|
3728
|
-
id_user =
|
|
3728
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3729
3729
|
|
|
3730
3730
|
id_connection = 56 # Integer |
|
|
3731
3731
|
|
|
@@ -3736,16 +3736,16 @@ id_document = 56 # Integer |
|
|
|
3736
3736
|
opts = {
|
|
3737
3737
|
id_type: 56, # Integer | Type of this document
|
|
3738
3738
|
id_category: 56, # Integer | Related category
|
|
3739
|
-
date: Date.parse(
|
|
3740
|
-
duedate: Date.parse(
|
|
3739
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
3740
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
3741
3741
|
total_amount: 3.4, # Float | Taxed amount
|
|
3742
3742
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
3743
3743
|
vat: 3.4, # Float | VAT amount
|
|
3744
3744
|
income: 56, # Integer | Is an income or an outcome
|
|
3745
3745
|
readonly: 56, # Integer | Is this file readonly
|
|
3746
|
-
file: File.new(
|
|
3747
|
-
name:
|
|
3748
|
-
expand:
|
|
3746
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3747
|
+
name: 'name_example', # String | Name of the document
|
|
3748
|
+
expand: 'expand_example' # String |
|
|
3749
3749
|
}
|
|
3750
3750
|
|
|
3751
3751
|
begin
|
|
@@ -3814,15 +3814,15 @@ end
|
|
|
3814
3814
|
|
|
3815
3815
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3816
3816
|
|
|
3817
|
-
id_user =
|
|
3817
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3818
3818
|
|
|
3819
3819
|
id_connection = 56 # Integer |
|
|
3820
3820
|
|
|
3821
3821
|
id_transactions_cluster = 56 # Integer |
|
|
3822
3822
|
|
|
3823
|
-
date = Date.parse(
|
|
3823
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
3824
3824
|
|
|
3825
|
-
duedate = Date.parse(
|
|
3825
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
3826
3826
|
|
|
3827
3827
|
opts = {
|
|
3828
3828
|
id_type: 56, # Integer | Type of this document
|
|
@@ -3832,10 +3832,10 @@ opts = {
|
|
|
3832
3832
|
vat: 3.4, # Float | VAT amount
|
|
3833
3833
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
3834
3834
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
3835
|
-
file: File.new(
|
|
3835
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
3836
3836
|
id_ocr: 56, # Integer | Related OCR process
|
|
3837
|
-
name:
|
|
3838
|
-
expand:
|
|
3837
|
+
name: 'name_example', # String | Name of the document
|
|
3838
|
+
expand: 'expand_example' # String |
|
|
3839
3839
|
}
|
|
3840
3840
|
|
|
3841
3841
|
begin
|
|
@@ -3904,7 +3904,7 @@ end
|
|
|
3904
3904
|
|
|
3905
3905
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3906
3906
|
|
|
3907
|
-
id_user =
|
|
3907
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3908
3908
|
|
|
3909
3909
|
id_connection = 56 # Integer |
|
|
3910
3910
|
|
|
@@ -3913,7 +3913,7 @@ id_transactions_cluster = 56 # Integer |
|
|
|
3913
3913
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
3914
3914
|
|
|
3915
3915
|
opts = {
|
|
3916
|
-
expand:
|
|
3916
|
+
expand: 'expand_example' # String |
|
|
3917
3917
|
}
|
|
3918
3918
|
|
|
3919
3919
|
begin
|
|
@@ -3971,10 +3971,10 @@ end
|
|
|
3971
3971
|
|
|
3972
3972
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
3973
3973
|
|
|
3974
|
-
id_user =
|
|
3974
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
3975
3975
|
|
|
3976
3976
|
opts = {
|
|
3977
|
-
expand:
|
|
3977
|
+
expand: 'expand_example' # String |
|
|
3978
3978
|
}
|
|
3979
3979
|
|
|
3980
3980
|
begin
|
|
@@ -4009,7 +4009,7 @@ Name | Type | Description | Notes
|
|
|
4009
4009
|
|
|
4010
4010
|
|
|
4011
4011
|
# **users_id_user_documents_get**
|
|
4012
|
-
>
|
|
4012
|
+
> InlineResponse20028 users_id_user_documents_get(id_user, opts)
|
|
4013
4013
|
|
|
4014
4014
|
Get documents
|
|
4015
4015
|
|
|
@@ -4029,19 +4029,19 @@ end
|
|
|
4029
4029
|
|
|
4030
4030
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4031
4031
|
|
|
4032
|
-
id_user =
|
|
4032
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4033
4033
|
|
|
4034
4034
|
opts = {
|
|
4035
4035
|
limit: 56, # Integer | limit number of results
|
|
4036
4036
|
offset: 56, # Integer | offset of first result
|
|
4037
|
-
min_date: Date.parse(
|
|
4038
|
-
max_date: Date.parse(
|
|
4037
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4038
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4039
4039
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
4040
|
-
max_amount: 3.4, # Float |
|
|
4040
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
4041
4041
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
4042
|
-
max_timestamp: 3.4, # Float |
|
|
4042
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
4043
4043
|
id_type: 56, # Integer | filter with a document type
|
|
4044
|
-
expand:
|
|
4044
|
+
expand: 'expand_example' # String |
|
|
4045
4045
|
}
|
|
4046
4046
|
|
|
4047
4047
|
begin
|
|
@@ -4063,15 +4063,15 @@ Name | Type | Description | Notes
|
|
|
4063
4063
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
4064
4064
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
4065
4065
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
4066
|
-
**max_amount** | **Float**|
|
|
4066
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
4067
4067
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
4068
|
-
**max_timestamp** | **Float**|
|
|
4068
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
4069
4069
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
4070
4070
|
**expand** | **String**| | [optional]
|
|
4071
4071
|
|
|
4072
4072
|
### Return type
|
|
4073
4073
|
|
|
4074
|
-
[**
|
|
4074
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
4075
4075
|
|
|
4076
4076
|
### Authorization
|
|
4077
4077
|
|
|
@@ -4105,12 +4105,12 @@ end
|
|
|
4105
4105
|
|
|
4106
4106
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4107
4107
|
|
|
4108
|
-
id_user =
|
|
4108
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4109
4109
|
|
|
4110
4110
|
id_document = 56 # Integer |
|
|
4111
4111
|
|
|
4112
4112
|
opts = {
|
|
4113
|
-
expand:
|
|
4113
|
+
expand: 'expand_example' # String |
|
|
4114
4114
|
}
|
|
4115
4115
|
|
|
4116
4116
|
begin
|
|
@@ -4166,23 +4166,23 @@ end
|
|
|
4166
4166
|
|
|
4167
4167
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4168
4168
|
|
|
4169
|
-
id_user =
|
|
4169
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4170
4170
|
|
|
4171
4171
|
id_document = 56 # Integer |
|
|
4172
4172
|
|
|
4173
4173
|
opts = {
|
|
4174
4174
|
id_type: 56, # Integer | Type of this document
|
|
4175
4175
|
id_category: 56, # Integer | Related category
|
|
4176
|
-
date: Date.parse(
|
|
4177
|
-
duedate: Date.parse(
|
|
4176
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
4177
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
4178
4178
|
total_amount: 3.4, # Float | Taxed amount
|
|
4179
4179
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
4180
4180
|
vat: 3.4, # Float | VAT amount
|
|
4181
4181
|
income: 56, # Integer | Is an income or an outcome
|
|
4182
4182
|
readonly: 56, # Integer | Is this file readonly
|
|
4183
|
-
file: File.new(
|
|
4184
|
-
name:
|
|
4185
|
-
expand:
|
|
4183
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4184
|
+
name: 'name_example', # String | Name of the document
|
|
4185
|
+
expand: 'expand_example' # String |
|
|
4186
4186
|
}
|
|
4187
4187
|
|
|
4188
4188
|
begin
|
|
@@ -4249,11 +4249,11 @@ end
|
|
|
4249
4249
|
|
|
4250
4250
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4251
4251
|
|
|
4252
|
-
id_user =
|
|
4252
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4253
4253
|
|
|
4254
|
-
date = Date.parse(
|
|
4254
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
4255
4255
|
|
|
4256
|
-
duedate = Date.parse(
|
|
4256
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
4257
4257
|
|
|
4258
4258
|
opts = {
|
|
4259
4259
|
id_type: 56, # Integer | Type of this document
|
|
@@ -4263,10 +4263,10 @@ opts = {
|
|
|
4263
4263
|
vat: 3.4, # Float | VAT amount
|
|
4264
4264
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
4265
4265
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
4266
|
-
file: File.new(
|
|
4266
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4267
4267
|
id_ocr: 56, # Integer | Related OCR process
|
|
4268
|
-
name:
|
|
4269
|
-
expand:
|
|
4268
|
+
name: 'name_example', # String | Name of the document
|
|
4269
|
+
expand: 'expand_example' # String |
|
|
4270
4270
|
}
|
|
4271
4271
|
|
|
4272
4272
|
begin
|
|
@@ -4333,12 +4333,12 @@ end
|
|
|
4333
4333
|
|
|
4334
4334
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4335
4335
|
|
|
4336
|
-
id_user =
|
|
4336
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4337
4337
|
|
|
4338
4338
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
4339
4339
|
|
|
4340
4340
|
opts = {
|
|
4341
|
-
expand:
|
|
4341
|
+
expand: 'expand_example' # String |
|
|
4342
4342
|
}
|
|
4343
4343
|
|
|
4344
4344
|
begin
|
|
@@ -4394,13 +4394,13 @@ end
|
|
|
4394
4394
|
|
|
4395
4395
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4396
4396
|
|
|
4397
|
-
id_user =
|
|
4397
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4398
4398
|
|
|
4399
|
-
file = File.new(
|
|
4399
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
4400
4400
|
|
|
4401
4401
|
opts = {
|
|
4402
4402
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
4403
|
-
name:
|
|
4403
|
+
name: 'name_example' # String | Name of the document
|
|
4404
4404
|
}
|
|
4405
4405
|
|
|
4406
4406
|
begin
|
|
@@ -4456,12 +4456,12 @@ end
|
|
|
4456
4456
|
|
|
4457
4457
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4458
4458
|
|
|
4459
|
-
id_user =
|
|
4459
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4460
4460
|
|
|
4461
4461
|
id_subscription = 56 # Integer |
|
|
4462
4462
|
|
|
4463
4463
|
opts = {
|
|
4464
|
-
expand:
|
|
4464
|
+
expand: 'expand_example' # String |
|
|
4465
4465
|
}
|
|
4466
4466
|
|
|
4467
4467
|
begin
|
|
@@ -4497,7 +4497,7 @@ Name | Type | Description | Notes
|
|
|
4497
4497
|
|
|
4498
4498
|
|
|
4499
4499
|
# **users_id_user_subscriptions_id_subscription_documents_get**
|
|
4500
|
-
>
|
|
4500
|
+
> InlineResponse20028 users_id_user_subscriptions_id_subscription_documents_get(id_user, id_subscription, opts)
|
|
4501
4501
|
|
|
4502
4502
|
Get documents
|
|
4503
4503
|
|
|
@@ -4517,21 +4517,21 @@ end
|
|
|
4517
4517
|
|
|
4518
4518
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4519
4519
|
|
|
4520
|
-
id_user =
|
|
4520
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4521
4521
|
|
|
4522
4522
|
id_subscription = 56 # Integer |
|
|
4523
4523
|
|
|
4524
4524
|
opts = {
|
|
4525
4525
|
limit: 56, # Integer | limit number of results
|
|
4526
4526
|
offset: 56, # Integer | offset of first result
|
|
4527
|
-
min_date: Date.parse(
|
|
4528
|
-
max_date: Date.parse(
|
|
4527
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4528
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4529
4529
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
4530
|
-
max_amount: 3.4, # Float |
|
|
4530
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
4531
4531
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
4532
|
-
max_timestamp: 3.4, # Float |
|
|
4532
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
4533
4533
|
id_type: 56, # Integer | filter with a document type
|
|
4534
|
-
expand:
|
|
4534
|
+
expand: 'expand_example' # String |
|
|
4535
4535
|
}
|
|
4536
4536
|
|
|
4537
4537
|
begin
|
|
@@ -4554,15 +4554,15 @@ Name | Type | Description | Notes
|
|
|
4554
4554
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
4555
4555
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
4556
4556
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
4557
|
-
**max_amount** | **Float**|
|
|
4557
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
4558
4558
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
4559
|
-
**max_timestamp** | **Float**|
|
|
4559
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
4560
4560
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
4561
4561
|
**expand** | **String**| | [optional]
|
|
4562
4562
|
|
|
4563
4563
|
### Return type
|
|
4564
4564
|
|
|
4565
|
-
[**
|
|
4565
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
4566
4566
|
|
|
4567
4567
|
### Authorization
|
|
4568
4568
|
|
|
@@ -4596,14 +4596,14 @@ end
|
|
|
4596
4596
|
|
|
4597
4597
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4598
4598
|
|
|
4599
|
-
id_user =
|
|
4599
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4600
4600
|
|
|
4601
4601
|
id_subscription = 56 # Integer |
|
|
4602
4602
|
|
|
4603
4603
|
id_document = 56 # Integer |
|
|
4604
4604
|
|
|
4605
4605
|
opts = {
|
|
4606
|
-
expand:
|
|
4606
|
+
expand: 'expand_example' # String |
|
|
4607
4607
|
}
|
|
4608
4608
|
|
|
4609
4609
|
begin
|
|
@@ -4660,7 +4660,7 @@ end
|
|
|
4660
4660
|
|
|
4661
4661
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4662
4662
|
|
|
4663
|
-
id_user =
|
|
4663
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4664
4664
|
|
|
4665
4665
|
id_subscription = 56 # Integer |
|
|
4666
4666
|
|
|
@@ -4669,16 +4669,16 @@ id_document = 56 # Integer |
|
|
|
4669
4669
|
opts = {
|
|
4670
4670
|
id_type: 56, # Integer | Type of this document
|
|
4671
4671
|
id_category: 56, # Integer | Related category
|
|
4672
|
-
date: Date.parse(
|
|
4673
|
-
duedate: Date.parse(
|
|
4672
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
4673
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
4674
4674
|
total_amount: 3.4, # Float | Taxed amount
|
|
4675
4675
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
4676
4676
|
vat: 3.4, # Float | VAT amount
|
|
4677
4677
|
income: 56, # Integer | Is an income or an outcome
|
|
4678
4678
|
readonly: 56, # Integer | Is this file readonly
|
|
4679
|
-
file: File.new(
|
|
4680
|
-
name:
|
|
4681
|
-
expand:
|
|
4679
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4680
|
+
name: 'name_example', # String | Name of the document
|
|
4681
|
+
expand: 'expand_example' # String |
|
|
4682
4682
|
}
|
|
4683
4683
|
|
|
4684
4684
|
begin
|
|
@@ -4746,13 +4746,13 @@ end
|
|
|
4746
4746
|
|
|
4747
4747
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4748
4748
|
|
|
4749
|
-
id_user =
|
|
4749
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4750
4750
|
|
|
4751
4751
|
id_subscription = 56 # Integer |
|
|
4752
4752
|
|
|
4753
|
-
date = Date.parse(
|
|
4753
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
4754
4754
|
|
|
4755
|
-
duedate = Date.parse(
|
|
4755
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
4756
4756
|
|
|
4757
4757
|
opts = {
|
|
4758
4758
|
id_type: 56, # Integer | Type of this document
|
|
@@ -4762,10 +4762,10 @@ opts = {
|
|
|
4762
4762
|
vat: 3.4, # Float | VAT amount
|
|
4763
4763
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
4764
4764
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
4765
|
-
file: File.new(
|
|
4765
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
4766
4766
|
id_ocr: 56, # Integer | Related OCR process
|
|
4767
|
-
name:
|
|
4768
|
-
expand:
|
|
4767
|
+
name: 'name_example', # String | Name of the document
|
|
4768
|
+
expand: 'expand_example' # String |
|
|
4769
4769
|
}
|
|
4770
4770
|
|
|
4771
4771
|
begin
|
|
@@ -4833,14 +4833,14 @@ end
|
|
|
4833
4833
|
|
|
4834
4834
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4835
4835
|
|
|
4836
|
-
id_user =
|
|
4836
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4837
4837
|
|
|
4838
4838
|
id_subscription = 56 # Integer |
|
|
4839
4839
|
|
|
4840
4840
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
4841
4841
|
|
|
4842
4842
|
opts = {
|
|
4843
|
-
expand:
|
|
4843
|
+
expand: 'expand_example' # String |
|
|
4844
4844
|
}
|
|
4845
4845
|
|
|
4846
4846
|
begin
|
|
@@ -4871,7 +4871,7 @@ Name | Type | Description | Notes
|
|
|
4871
4871
|
|
|
4872
4872
|
### HTTP request headers
|
|
4873
4873
|
|
|
4874
|
-
- **Content-Type**:
|
|
4874
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
4875
4875
|
- **Accept**: application/json
|
|
4876
4876
|
|
|
4877
4877
|
|
|
@@ -4897,12 +4897,12 @@ end
|
|
|
4897
4897
|
|
|
4898
4898
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4899
4899
|
|
|
4900
|
-
id_user =
|
|
4900
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4901
4901
|
|
|
4902
4902
|
id_transaction = 56 # Integer |
|
|
4903
4903
|
|
|
4904
4904
|
opts = {
|
|
4905
|
-
expand:
|
|
4905
|
+
expand: 'expand_example' # String |
|
|
4906
4906
|
}
|
|
4907
4907
|
|
|
4908
4908
|
begin
|
|
@@ -4938,7 +4938,7 @@ Name | Type | Description | Notes
|
|
|
4938
4938
|
|
|
4939
4939
|
|
|
4940
4940
|
# **users_id_user_transactions_id_transaction_documents_get**
|
|
4941
|
-
>
|
|
4941
|
+
> InlineResponse20028 users_id_user_transactions_id_transaction_documents_get(id_user, id_transaction, opts)
|
|
4942
4942
|
|
|
4943
4943
|
Get documents
|
|
4944
4944
|
|
|
@@ -4958,21 +4958,21 @@ end
|
|
|
4958
4958
|
|
|
4959
4959
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
4960
4960
|
|
|
4961
|
-
id_user =
|
|
4961
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
4962
4962
|
|
|
4963
4963
|
id_transaction = 56 # Integer |
|
|
4964
4964
|
|
|
4965
4965
|
opts = {
|
|
4966
4966
|
limit: 56, # Integer | limit number of results
|
|
4967
4967
|
offset: 56, # Integer | offset of first result
|
|
4968
|
-
min_date: Date.parse(
|
|
4969
|
-
max_date: Date.parse(
|
|
4968
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
4969
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
4970
4970
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
4971
|
-
max_amount: 3.4, # Float |
|
|
4971
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
4972
4972
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
4973
|
-
max_timestamp: 3.4, # Float |
|
|
4973
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
4974
4974
|
id_type: 56, # Integer | filter with a document type
|
|
4975
|
-
expand:
|
|
4975
|
+
expand: 'expand_example' # String |
|
|
4976
4976
|
}
|
|
4977
4977
|
|
|
4978
4978
|
begin
|
|
@@ -4995,15 +4995,15 @@ Name | Type | Description | Notes
|
|
|
4995
4995
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
4996
4996
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
4997
4997
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
4998
|
-
**max_amount** | **Float**|
|
|
4998
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
4999
4999
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
5000
|
-
**max_timestamp** | **Float**|
|
|
5000
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
5001
5001
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
5002
5002
|
**expand** | **String**| | [optional]
|
|
5003
5003
|
|
|
5004
5004
|
### Return type
|
|
5005
5005
|
|
|
5006
|
-
[**
|
|
5006
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
5007
5007
|
|
|
5008
5008
|
### Authorization
|
|
5009
5009
|
|
|
@@ -5037,14 +5037,14 @@ end
|
|
|
5037
5037
|
|
|
5038
5038
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5039
5039
|
|
|
5040
|
-
id_user =
|
|
5040
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5041
5041
|
|
|
5042
5042
|
id_transaction = 56 # Integer |
|
|
5043
5043
|
|
|
5044
5044
|
id_document = 56 # Integer |
|
|
5045
5045
|
|
|
5046
5046
|
opts = {
|
|
5047
|
-
expand:
|
|
5047
|
+
expand: 'expand_example' # String |
|
|
5048
5048
|
}
|
|
5049
5049
|
|
|
5050
5050
|
begin
|
|
@@ -5101,7 +5101,7 @@ end
|
|
|
5101
5101
|
|
|
5102
5102
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5103
5103
|
|
|
5104
|
-
id_user =
|
|
5104
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5105
5105
|
|
|
5106
5106
|
id_transaction = 56 # Integer |
|
|
5107
5107
|
|
|
@@ -5110,16 +5110,16 @@ id_document = 56 # Integer |
|
|
|
5110
5110
|
opts = {
|
|
5111
5111
|
id_type: 56, # Integer | Type of this document
|
|
5112
5112
|
id_category: 56, # Integer | Related category
|
|
5113
|
-
date: Date.parse(
|
|
5114
|
-
duedate: Date.parse(
|
|
5113
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
5114
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
5115
5115
|
total_amount: 3.4, # Float | Taxed amount
|
|
5116
5116
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
5117
5117
|
vat: 3.4, # Float | VAT amount
|
|
5118
5118
|
income: 56, # Integer | Is an income or an outcome
|
|
5119
5119
|
readonly: 56, # Integer | Is this file readonly
|
|
5120
|
-
file: File.new(
|
|
5121
|
-
name:
|
|
5122
|
-
expand:
|
|
5120
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5121
|
+
name: 'name_example', # String | Name of the document
|
|
5122
|
+
expand: 'expand_example' # String |
|
|
5123
5123
|
}
|
|
5124
5124
|
|
|
5125
5125
|
begin
|
|
@@ -5187,13 +5187,13 @@ end
|
|
|
5187
5187
|
|
|
5188
5188
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5189
5189
|
|
|
5190
|
-
id_user =
|
|
5190
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5191
5191
|
|
|
5192
5192
|
id_transaction = 56 # Integer |
|
|
5193
5193
|
|
|
5194
|
-
date = Date.parse(
|
|
5194
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
5195
5195
|
|
|
5196
|
-
duedate = Date.parse(
|
|
5196
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
5197
5197
|
|
|
5198
5198
|
opts = {
|
|
5199
5199
|
id_type: 56, # Integer | Type of this document
|
|
@@ -5203,10 +5203,10 @@ opts = {
|
|
|
5203
5203
|
vat: 3.4, # Float | VAT amount
|
|
5204
5204
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
5205
5205
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
5206
|
-
file: File.new(
|
|
5206
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5207
5207
|
id_ocr: 56, # Integer | Related OCR process
|
|
5208
|
-
name:
|
|
5209
|
-
expand:
|
|
5208
|
+
name: 'name_example', # String | Name of the document
|
|
5209
|
+
expand: 'expand_example' # String |
|
|
5210
5210
|
}
|
|
5211
5211
|
|
|
5212
5212
|
begin
|
|
@@ -5274,14 +5274,14 @@ end
|
|
|
5274
5274
|
|
|
5275
5275
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5276
5276
|
|
|
5277
|
-
id_user =
|
|
5277
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5278
5278
|
|
|
5279
5279
|
id_transaction = 56 # Integer |
|
|
5280
5280
|
|
|
5281
5281
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
5282
5282
|
|
|
5283
5283
|
opts = {
|
|
5284
|
-
expand:
|
|
5284
|
+
expand: 'expand_example' # String |
|
|
5285
5285
|
}
|
|
5286
5286
|
|
|
5287
5287
|
begin
|
|
@@ -5312,7 +5312,7 @@ Name | Type | Description | Notes
|
|
|
5312
5312
|
|
|
5313
5313
|
### HTTP request headers
|
|
5314
5314
|
|
|
5315
|
-
- **Content-Type**:
|
|
5315
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
5316
5316
|
- **Accept**: application/json
|
|
5317
5317
|
|
|
5318
5318
|
|
|
@@ -5338,12 +5338,12 @@ end
|
|
|
5338
5338
|
|
|
5339
5339
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5340
5340
|
|
|
5341
|
-
id_user =
|
|
5341
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5342
5342
|
|
|
5343
5343
|
id_transactions_cluster = 56 # Integer |
|
|
5344
5344
|
|
|
5345
5345
|
opts = {
|
|
5346
|
-
expand:
|
|
5346
|
+
expand: 'expand_example' # String |
|
|
5347
5347
|
}
|
|
5348
5348
|
|
|
5349
5349
|
begin
|
|
@@ -5379,7 +5379,7 @@ Name | Type | Description | Notes
|
|
|
5379
5379
|
|
|
5380
5380
|
|
|
5381
5381
|
# **users_id_user_transactionsclusters_id_transactions_cluster_documents_get**
|
|
5382
|
-
>
|
|
5382
|
+
> InlineResponse20028 users_id_user_transactionsclusters_id_transactions_cluster_documents_get(id_user, id_transactions_cluster, opts)
|
|
5383
5383
|
|
|
5384
5384
|
Get documents
|
|
5385
5385
|
|
|
@@ -5399,21 +5399,21 @@ end
|
|
|
5399
5399
|
|
|
5400
5400
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5401
5401
|
|
|
5402
|
-
id_user =
|
|
5402
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5403
5403
|
|
|
5404
5404
|
id_transactions_cluster = 56 # Integer |
|
|
5405
5405
|
|
|
5406
5406
|
opts = {
|
|
5407
5407
|
limit: 56, # Integer | limit number of results
|
|
5408
5408
|
offset: 56, # Integer | offset of first result
|
|
5409
|
-
min_date: Date.parse(
|
|
5410
|
-
max_date: Date.parse(
|
|
5409
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
5410
|
+
max_date: Date.parse('2013-10-20'), # Date | maximum (inclusive) date
|
|
5411
5411
|
min_amount: 3.4, # Float | minimal (inclusive) amount
|
|
5412
|
-
max_amount: 3.4, # Float |
|
|
5412
|
+
max_amount: 3.4, # Float | maximum (inclusive) amount
|
|
5413
5413
|
min_timestamp: 3.4, # Float | minimal (inclusive) timestamp
|
|
5414
|
-
max_timestamp: 3.4, # Float |
|
|
5414
|
+
max_timestamp: 3.4, # Float | maximum (inclusive) timestamp
|
|
5415
5415
|
id_type: 56, # Integer | filter with a document type
|
|
5416
|
-
expand:
|
|
5416
|
+
expand: 'expand_example' # String |
|
|
5417
5417
|
}
|
|
5418
5418
|
|
|
5419
5419
|
begin
|
|
@@ -5436,15 +5436,15 @@ Name | Type | Description | Notes
|
|
|
5436
5436
|
**min_date** | **Date**| minimal (inclusive) date | [optional]
|
|
5437
5437
|
**max_date** | **Date**| maximum (inclusive) date | [optional]
|
|
5438
5438
|
**min_amount** | **Float**| minimal (inclusive) amount | [optional]
|
|
5439
|
-
**max_amount** | **Float**|
|
|
5439
|
+
**max_amount** | **Float**| maximum (inclusive) amount | [optional]
|
|
5440
5440
|
**min_timestamp** | **Float**| minimal (inclusive) timestamp | [optional]
|
|
5441
|
-
**max_timestamp** | **Float**|
|
|
5441
|
+
**max_timestamp** | **Float**| maximum (inclusive) timestamp | [optional]
|
|
5442
5442
|
**id_type** | **Integer**| filter with a document type | [optional]
|
|
5443
5443
|
**expand** | **String**| | [optional]
|
|
5444
5444
|
|
|
5445
5445
|
### Return type
|
|
5446
5446
|
|
|
5447
|
-
[**
|
|
5447
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
|
5448
5448
|
|
|
5449
5449
|
### Authorization
|
|
5450
5450
|
|
|
@@ -5478,14 +5478,14 @@ end
|
|
|
5478
5478
|
|
|
5479
5479
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5480
5480
|
|
|
5481
|
-
id_user =
|
|
5481
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5482
5482
|
|
|
5483
5483
|
id_transactions_cluster = 56 # Integer |
|
|
5484
5484
|
|
|
5485
5485
|
id_document = 56 # Integer |
|
|
5486
5486
|
|
|
5487
5487
|
opts = {
|
|
5488
|
-
expand:
|
|
5488
|
+
expand: 'expand_example' # String |
|
|
5489
5489
|
}
|
|
5490
5490
|
|
|
5491
5491
|
begin
|
|
@@ -5542,7 +5542,7 @@ end
|
|
|
5542
5542
|
|
|
5543
5543
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5544
5544
|
|
|
5545
|
-
id_user =
|
|
5545
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5546
5546
|
|
|
5547
5547
|
id_transactions_cluster = 56 # Integer |
|
|
5548
5548
|
|
|
@@ -5551,16 +5551,16 @@ id_document = 56 # Integer |
|
|
|
5551
5551
|
opts = {
|
|
5552
5552
|
id_type: 56, # Integer | Type of this document
|
|
5553
5553
|
id_category: 56, # Integer | Related category
|
|
5554
|
-
date: Date.parse(
|
|
5555
|
-
duedate: Date.parse(
|
|
5554
|
+
date: Date.parse('2013-10-20'), # Date | Date of document
|
|
5555
|
+
duedate: Date.parse('2013-10-20'), # Date | Due date of document
|
|
5556
5556
|
total_amount: 3.4, # Float | Taxed amount
|
|
5557
5557
|
untaxed_amount: 3.4, # Float | Untaxed amount
|
|
5558
5558
|
vat: 3.4, # Float | VAT amount
|
|
5559
5559
|
income: 56, # Integer | Is an income or an outcome
|
|
5560
5560
|
readonly: 56, # Integer | Is this file readonly
|
|
5561
|
-
file: File.new(
|
|
5562
|
-
name:
|
|
5563
|
-
expand:
|
|
5561
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5562
|
+
name: 'name_example', # String | Name of the document
|
|
5563
|
+
expand: 'expand_example' # String |
|
|
5564
5564
|
}
|
|
5565
5565
|
|
|
5566
5566
|
begin
|
|
@@ -5628,13 +5628,13 @@ end
|
|
|
5628
5628
|
|
|
5629
5629
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5630
5630
|
|
|
5631
|
-
id_user =
|
|
5631
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5632
5632
|
|
|
5633
5633
|
id_transactions_cluster = 56 # Integer |
|
|
5634
5634
|
|
|
5635
|
-
date = Date.parse(
|
|
5635
|
+
date = Date.parse('2013-10-20') # Date | Date of document
|
|
5636
5636
|
|
|
5637
|
-
duedate = Date.parse(
|
|
5637
|
+
duedate = Date.parse('2013-10-20') # Date | Due date of document
|
|
5638
5638
|
|
|
5639
5639
|
opts = {
|
|
5640
5640
|
id_type: 56, # Integer | Type of this document
|
|
@@ -5644,10 +5644,10 @@ opts = {
|
|
|
5644
5644
|
vat: 3.4, # Float | VAT amount
|
|
5645
5645
|
income: true, # BOOLEAN | Is an income or an outcome
|
|
5646
5646
|
readonly: true, # BOOLEAN | Is this file readonly
|
|
5647
|
-
file: File.new(
|
|
5647
|
+
file: File.new('/path/to/file.txt'), # File | File of the document
|
|
5648
5648
|
id_ocr: 56, # Integer | Related OCR process
|
|
5649
|
-
name:
|
|
5650
|
-
expand:
|
|
5649
|
+
name: 'name_example', # String | Name of the document
|
|
5650
|
+
expand: 'expand_example' # String |
|
|
5651
5651
|
}
|
|
5652
5652
|
|
|
5653
5653
|
begin
|
|
@@ -5715,14 +5715,14 @@ end
|
|
|
5715
5715
|
|
|
5716
5716
|
api_instance = BudgeaClient::DocumentsApi.new
|
|
5717
5717
|
|
|
5718
|
-
id_user =
|
|
5718
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
5719
5719
|
|
|
5720
5720
|
id_transactions_cluster = 56 # Integer |
|
|
5721
5721
|
|
|
5722
5722
|
id_document = 56 # Integer | id of the document you want to attach the file to
|
|
5723
5723
|
|
|
5724
5724
|
opts = {
|
|
5725
|
-
expand:
|
|
5725
|
+
expand: 'expand_example' # String |
|
|
5726
5726
|
}
|
|
5727
5727
|
|
|
5728
5728
|
begin
|
|
@@ -5753,7 +5753,7 @@ Name | Type | Description | Notes
|
|
|
5753
5753
|
|
|
5754
5754
|
### HTTP request headers
|
|
5755
5755
|
|
|
5756
|
-
- **Content-Type**:
|
|
5756
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
5757
5757
|
- **Accept**: application/json
|
|
5758
5758
|
|
|
5759
5759
|
|