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/Field.md
CHANGED
|
@@ -3,14 +3,15 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**id_connector** | **Integer** | ID of the related connector |
|
|
7
7
|
**id** | **Integer** | ID of the field |
|
|
8
8
|
**name** | **String** | Name of the field |
|
|
9
9
|
**label** | **String** | Label to display to user |
|
|
10
10
|
**regex** | **String** | If set, the value must match this regexp | [optional]
|
|
11
|
-
**type** | **String** | Type of field (text, password, list, hidden) | [optional] [default to
|
|
11
|
+
**type** | **String** | Type of field (text, password, list, hidden) | [optional] [default to 'text']
|
|
12
12
|
**ephemeral** | **BOOLEAN** | This field will not be saved in database | [optional] [default to false]
|
|
13
13
|
**value** | **String** | Default value of the field | [optional]
|
|
14
14
|
**values** | [**Array<FieldValue>**](FieldValue.md) | | [optional]
|
|
15
|
+
**required** | **BOOLEAN** | If true, field has to be set to synchronize the connection | [optional] [default to true]
|
|
15
16
|
|
|
16
17
|
|
data/docs/InlineResponse20010.md
CHANGED
data/docs/InlineResponse20011.md
CHANGED
data/docs/InlineResponse20012.md
CHANGED
data/docs/InlineResponse20013.md
CHANGED
data/docs/InlineResponse20014.md
CHANGED
data/docs/InlineResponse20015.md
CHANGED
data/docs/InlineResponse20016.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**connectionlogs** | [**Array<ConnectionLog>**](ConnectionLog.md) | |
|
|
7
7
|
|
|
8
8
|
|
data/docs/InlineResponse20017.md
CHANGED
data/docs/InlineResponse20018.md
CHANGED
data/docs/InlineResponse20019.md
CHANGED
data/docs/InlineResponse20020.md
CHANGED
data/docs/InlineResponse20021.md
CHANGED
data/docs/InlineResponse20022.md
CHANGED
data/docs/InlineResponse20023.md
CHANGED
data/docs/InlineResponse20024.md
CHANGED
data/docs/InlineResponse20025.md
CHANGED
data/docs/InlineResponse20026.md
CHANGED
data/docs/InlineResponse20027.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**transactions** | [**Array<Transaction>**](Transaction.md) | |
|
|
7
7
|
|
|
8
8
|
|
data/docs/InlineResponse20028.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**documents** | [**Array<Document>**](Document.md) | |
|
|
7
7
|
|
|
8
8
|
|
data/docs/InlineResponse20029.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**transactioninformations** | [**Array<TransactionInformation>**](TransactionInformation.md) | |
|
|
7
7
|
|
|
8
8
|
|
data/docs/InlineResponse2003.md
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
7
|
-
**
|
|
8
|
-
**user** | **Object** | the user data object |
|
|
6
|
+
**jwt_token** | **String** | the jwt token |
|
|
7
|
+
**payload** | **Object** | the payload contained in the jwt token |
|
|
9
8
|
|
|
10
9
|
|
data/docs/InlineResponse20030.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**transactionsclusters** | [**Array<TransactionsCluster>**](TransactionsCluster.md) | |
|
|
7
7
|
|
|
8
8
|
|
data/docs/InlineResponse20031.md
CHANGED
data/docs/InlineResponse20032.md
CHANGED
data/docs/InlineResponse20033.md
CHANGED
data/docs/InlineResponse2004.md
CHANGED
|
@@ -4,9 +4,7 @@
|
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**profile** | **Object** | the user profile data object |
|
|
7
|
-
**scope** | **String** | the token scope |
|
|
8
7
|
**token** | **String** | the requested token |
|
|
9
|
-
**expires_in** | **Integer** | duration in seconds of the token validity | [optional]
|
|
10
8
|
**user** | **Object** | the user data object |
|
|
11
9
|
|
|
12
10
|
|
data/docs/InlineResponse2005.md
CHANGED
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
7
|
-
**
|
|
6
|
+
**profile** | **Object** | the user profile data object |
|
|
7
|
+
**scope** | **String** | the token scope |
|
|
8
|
+
**token** | **String** | the requested token |
|
|
9
|
+
**expires_in** | **Integer** | duration in seconds of the token validity | [optional]
|
|
10
|
+
**user** | **Object** | the user data object |
|
|
8
11
|
|
|
9
12
|
|
data/docs/InlineResponse2006.md
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
7
|
-
**
|
|
8
|
-
**type** | **Object** | the token type |
|
|
6
|
+
**access_token** | **String** | the access token transformed from the temporary one |
|
|
7
|
+
**token_type** | **String** | the access token type |
|
|
9
8
|
|
|
10
9
|
|
data/docs/InlineResponse2007.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**expires_in** | **Integer** | duration in seconds of the token validity |
|
|
7
|
+
**code** | **String** | the temporary token |
|
|
8
|
+
**type** | **Object** | the token type |
|
|
7
9
|
|
|
8
10
|
|
data/docs/InlineResponse2008.md
CHANGED
data/docs/InlineResponse2009.md
CHANGED
data/docs/OCRApi.md
CHANGED
|
@@ -29,11 +29,11 @@ end
|
|
|
29
29
|
|
|
30
30
|
api_instance = BudgeaClient::OCRApi.new
|
|
31
31
|
|
|
32
|
-
file = File.new(
|
|
32
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
33
33
|
|
|
34
34
|
opts = {
|
|
35
35
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
36
|
-
name:
|
|
36
|
+
name: 'name_example' # String | Name of the document
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
begin
|
|
@@ -88,13 +88,13 @@ end
|
|
|
88
88
|
|
|
89
89
|
api_instance = BudgeaClient::OCRApi.new
|
|
90
90
|
|
|
91
|
-
id_user =
|
|
91
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
92
92
|
|
|
93
|
-
file = File.new(
|
|
93
|
+
file = File.new('/path/to/file.txt') # File | File of the document
|
|
94
94
|
|
|
95
95
|
opts = {
|
|
96
96
|
id_transaction: 56, # Integer | Transaction used to help OCR to find data
|
|
97
|
-
name:
|
|
97
|
+
name: 'name_example' # String | Name of the document
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
begin
|
data/docs/OIDCApi.md
CHANGED
|
@@ -33,7 +33,7 @@ api_instance = BudgeaClient::OIDCApi.new
|
|
|
33
33
|
id_whitelist = 56 # Integer |
|
|
34
34
|
|
|
35
35
|
opts = {
|
|
36
|
-
expand:
|
|
36
|
+
expand: 'expand_example' # String |
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
begin
|
|
@@ -90,10 +90,10 @@ api_instance = BudgeaClient::OIDCApi.new
|
|
|
90
90
|
|
|
91
91
|
id_whitelist = 56 # Integer |
|
|
92
92
|
|
|
93
|
-
redirect_uri =
|
|
93
|
+
redirect_uri = 'redirect_uri_example' # String | new authorized redirect uri
|
|
94
94
|
|
|
95
95
|
opts = {
|
|
96
|
-
expand:
|
|
96
|
+
expand: 'expand_example' # String |
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
begin
|
|
@@ -149,10 +149,10 @@ end
|
|
|
149
149
|
|
|
150
150
|
api_instance = BudgeaClient::OIDCApi.new
|
|
151
151
|
|
|
152
|
-
redirect_uri =
|
|
152
|
+
redirect_uri = 'redirect_uri_example' # String | authorized redirect uri to be created
|
|
153
153
|
|
|
154
154
|
opts = {
|
|
155
|
-
expand:
|
|
155
|
+
expand: 'expand_example' # String |
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
begin
|
data/docs/PFMApi.md
CHANGED
|
@@ -66,7 +66,7 @@ end
|
|
|
66
66
|
|
|
67
67
|
api_instance = BudgeaClient::PFMApi.new
|
|
68
68
|
|
|
69
|
-
token =
|
|
69
|
+
token = 'token_example' # String | token received by email
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
begin
|
|
@@ -119,9 +119,9 @@ end
|
|
|
119
119
|
|
|
120
120
|
api_instance = BudgeaClient::PFMApi.new
|
|
121
121
|
|
|
122
|
-
token =
|
|
122
|
+
token = 'token_example' # String | token received in email
|
|
123
123
|
|
|
124
|
-
application =
|
|
124
|
+
application = 'application_example' # String | application in use
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
begin
|
|
@@ -150,7 +150,7 @@ Name | Type | Description | Notes
|
|
|
150
150
|
|
|
151
151
|
### HTTP request headers
|
|
152
152
|
|
|
153
|
-
- **Content-Type**:
|
|
153
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
154
154
|
- **Accept**: application/json
|
|
155
155
|
|
|
156
156
|
|
|
@@ -176,14 +176,14 @@ end
|
|
|
176
176
|
|
|
177
177
|
api_instance = BudgeaClient::PFMApi.new
|
|
178
178
|
|
|
179
|
-
username =
|
|
179
|
+
username = 'username_example' # String | username
|
|
180
180
|
|
|
181
|
-
password =
|
|
181
|
+
password = 'password_example' # String | password
|
|
182
182
|
|
|
183
|
-
application =
|
|
183
|
+
application = 'application_example' # String | application name
|
|
184
184
|
|
|
185
185
|
opts = {
|
|
186
|
-
scope:
|
|
186
|
+
scope: 'scope_example' # String | scope requested for the token
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
begin
|
|
@@ -219,7 +219,7 @@ nil (empty response body)
|
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
# **auth_register_post**
|
|
222
|
-
>
|
|
222
|
+
> InlineResponse2004 auth_register_post(email, password, application, opts)
|
|
223
223
|
|
|
224
224
|
Register to API
|
|
225
225
|
|
|
@@ -239,15 +239,15 @@ end
|
|
|
239
239
|
|
|
240
240
|
api_instance = BudgeaClient::PFMApi.new
|
|
241
241
|
|
|
242
|
-
email =
|
|
242
|
+
email = 'email_example' # String | email address
|
|
243
243
|
|
|
244
|
-
password =
|
|
244
|
+
password = 'password_example' # String | password
|
|
245
245
|
|
|
246
|
-
application =
|
|
246
|
+
application = 'application_example' # String | application in use
|
|
247
247
|
|
|
248
248
|
opts = {
|
|
249
|
-
sponsor:
|
|
250
|
-
notification_token:
|
|
249
|
+
sponsor: 'sponsor_example', # String | sponsor code to get advantages
|
|
250
|
+
notification_token: 'notification_token_example' # String | APNS or GCM token to send notifications to device
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
begin
|
|
@@ -271,7 +271,7 @@ Name | Type | Description | Notes
|
|
|
271
271
|
|
|
272
272
|
### Return type
|
|
273
273
|
|
|
274
|
-
[**
|
|
274
|
+
[**InlineResponse2004**](InlineResponse2004.md)
|
|
275
275
|
|
|
276
276
|
### Authorization
|
|
277
277
|
|
|
@@ -332,7 +332,7 @@ nil (empty response body)
|
|
|
332
332
|
|
|
333
333
|
|
|
334
334
|
# **auth_token_post**
|
|
335
|
-
>
|
|
335
|
+
> InlineResponse2005 auth_token_post(username, password, application, opts)
|
|
336
336
|
|
|
337
337
|
Login to API with credentials
|
|
338
338
|
|
|
@@ -352,14 +352,14 @@ end
|
|
|
352
352
|
|
|
353
353
|
api_instance = BudgeaClient::PFMApi.new
|
|
354
354
|
|
|
355
|
-
username =
|
|
355
|
+
username = 'username_example' # String | username
|
|
356
356
|
|
|
357
|
-
password =
|
|
357
|
+
password = 'password_example' # String | password
|
|
358
358
|
|
|
359
|
-
application =
|
|
359
|
+
application = 'application_example' # String | application name
|
|
360
360
|
|
|
361
361
|
opts = {
|
|
362
|
-
scope:
|
|
362
|
+
scope: 'scope_example' # String | scope requested for the token
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
begin
|
|
@@ -382,7 +382,7 @@ Name | Type | Description | Notes
|
|
|
382
382
|
|
|
383
383
|
### Return type
|
|
384
384
|
|
|
385
|
-
[**
|
|
385
|
+
[**InlineResponse2005**](InlineResponse2005.md)
|
|
386
386
|
|
|
387
387
|
### Authorization
|
|
388
388
|
|
|
@@ -463,14 +463,14 @@ end
|
|
|
463
463
|
|
|
464
464
|
api_instance = BudgeaClient::PFMApi.new
|
|
465
465
|
|
|
466
|
-
id_user =
|
|
466
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
467
467
|
|
|
468
468
|
id_account = 56 # Integer |
|
|
469
469
|
|
|
470
470
|
opts = {
|
|
471
|
-
min_date: Date.parse(
|
|
472
|
-
max_date: Date.parse(
|
|
473
|
-
period:
|
|
471
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
472
|
+
max_date: Date.parse('2013-10-20'), # Date | maximal (inclusive) date
|
|
473
|
+
period: 'period_example' # String | split output with the given period (default: month)
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
begin
|
|
@@ -507,7 +507,7 @@ nil (empty response body)
|
|
|
507
507
|
|
|
508
508
|
|
|
509
509
|
# **users_id_user_accounts_id_account_operationsalert_get**
|
|
510
|
-
>
|
|
510
|
+
> InlineResponse20024 users_id_user_accounts_id_account_operationsalert_get(id_user, id_account, opts)
|
|
511
511
|
|
|
512
512
|
Get a list of configurated alerts
|
|
513
513
|
|
|
@@ -527,12 +527,12 @@ end
|
|
|
527
527
|
|
|
528
528
|
api_instance = BudgeaClient::PFMApi.new
|
|
529
529
|
|
|
530
|
-
id_user =
|
|
530
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
531
531
|
|
|
532
532
|
id_account = 56 # Integer |
|
|
533
533
|
|
|
534
534
|
opts = {
|
|
535
|
-
expand:
|
|
535
|
+
expand: 'expand_example' # String |
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
begin
|
|
@@ -554,7 +554,7 @@ Name | Type | Description | Notes
|
|
|
554
554
|
|
|
555
555
|
### Return type
|
|
556
556
|
|
|
557
|
-
[**
|
|
557
|
+
[**InlineResponse20024**](InlineResponse20024.md)
|
|
558
558
|
|
|
559
559
|
### Authorization
|
|
560
560
|
|
|
@@ -588,14 +588,14 @@ end
|
|
|
588
588
|
|
|
589
589
|
api_instance = BudgeaClient::PFMApi.new
|
|
590
590
|
|
|
591
|
-
id_user =
|
|
591
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
592
592
|
|
|
593
593
|
id_account = 56 # Integer |
|
|
594
594
|
|
|
595
595
|
id_operationsalert = 56 # Integer |
|
|
596
596
|
|
|
597
597
|
opts = {
|
|
598
|
-
expand:
|
|
598
|
+
expand: 'expand_example' # String |
|
|
599
599
|
}
|
|
600
600
|
|
|
601
601
|
begin
|
|
@@ -652,19 +652,19 @@ end
|
|
|
652
652
|
|
|
653
653
|
api_instance = BudgeaClient::PFMApi.new
|
|
654
654
|
|
|
655
|
-
id_user =
|
|
655
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
656
656
|
|
|
657
657
|
id_account = 56 # Integer |
|
|
658
658
|
|
|
659
659
|
id_operationsalert = 56 # Integer |
|
|
660
660
|
|
|
661
661
|
opts = {
|
|
662
|
-
type:
|
|
662
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
663
663
|
income_max: 56, # Integer | capital gain thresholds
|
|
664
664
|
expense_max: 56, # Integer | capital loss thresholds
|
|
665
|
-
value_type:
|
|
665
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
666
666
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
667
|
-
expand:
|
|
667
|
+
expand: 'expand_example' # String |
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
begin
|
|
@@ -726,17 +726,17 @@ end
|
|
|
726
726
|
|
|
727
727
|
api_instance = BudgeaClient::PFMApi.new
|
|
728
728
|
|
|
729
|
-
id_user =
|
|
729
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
730
730
|
|
|
731
731
|
id_account = 56 # Integer |
|
|
732
732
|
|
|
733
733
|
opts = {
|
|
734
|
-
type:
|
|
734
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
735
735
|
income_max: 56, # Integer | capital gain thresholds
|
|
736
736
|
expense_max: 56, # Integer | capital loss thresholds
|
|
737
|
-
value_type:
|
|
737
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
738
738
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
739
|
-
expand:
|
|
739
|
+
expand: 'expand_example' # String |
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
begin
|
|
@@ -797,7 +797,7 @@ end
|
|
|
797
797
|
|
|
798
798
|
api_instance = BudgeaClient::PFMApi.new
|
|
799
799
|
|
|
800
|
-
id_user =
|
|
800
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
801
801
|
|
|
802
802
|
|
|
803
803
|
begin
|
|
@@ -851,7 +851,7 @@ end
|
|
|
851
851
|
|
|
852
852
|
api_instance = BudgeaClient::PFMApi.new
|
|
853
853
|
|
|
854
|
-
id_user =
|
|
854
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
855
855
|
|
|
856
856
|
opts = {
|
|
857
857
|
expense_max: 56, # Integer | threshold from which an alert has to be sent for a high expense
|
|
@@ -917,12 +917,12 @@ end
|
|
|
917
917
|
|
|
918
918
|
api_instance = BudgeaClient::PFMApi.new
|
|
919
919
|
|
|
920
|
-
id_user =
|
|
920
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
921
921
|
|
|
922
922
|
opts = {
|
|
923
|
-
min_date: Date.parse(
|
|
924
|
-
max_date: Date.parse(
|
|
925
|
-
period:
|
|
923
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
924
|
+
max_date: Date.parse('2013-10-20'), # Date | maximal (inclusive) date
|
|
925
|
+
period: 'period_example' # String | split output with the given period (default: month)
|
|
926
926
|
}
|
|
927
927
|
|
|
928
928
|
begin
|
|
@@ -978,16 +978,16 @@ end
|
|
|
978
978
|
|
|
979
979
|
api_instance = BudgeaClient::PFMApi.new
|
|
980
980
|
|
|
981
|
-
id_user =
|
|
981
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
982
982
|
|
|
983
983
|
id_connection = 56 # Integer |
|
|
984
984
|
|
|
985
985
|
id_account = 56 # Integer |
|
|
986
986
|
|
|
987
987
|
opts = {
|
|
988
|
-
min_date: Date.parse(
|
|
989
|
-
max_date: Date.parse(
|
|
990
|
-
period:
|
|
988
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
989
|
+
max_date: Date.parse('2013-10-20'), # Date | maximal (inclusive) date
|
|
990
|
+
period: 'period_example' # String | split output with the given period (default: month)
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
begin
|
|
@@ -1025,7 +1025,7 @@ nil (empty response body)
|
|
|
1025
1025
|
|
|
1026
1026
|
|
|
1027
1027
|
# **users_id_user_connections_id_connection_accounts_id_account_operationsalert_get**
|
|
1028
|
-
>
|
|
1028
|
+
> InlineResponse20024 users_id_user_connections_id_connection_accounts_id_account_operationsalert_get(id_user, id_connection, id_account, opts)
|
|
1029
1029
|
|
|
1030
1030
|
Get a list of configurated alerts
|
|
1031
1031
|
|
|
@@ -1045,14 +1045,14 @@ end
|
|
|
1045
1045
|
|
|
1046
1046
|
api_instance = BudgeaClient::PFMApi.new
|
|
1047
1047
|
|
|
1048
|
-
id_user =
|
|
1048
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1049
1049
|
|
|
1050
1050
|
id_connection = 56 # Integer |
|
|
1051
1051
|
|
|
1052
1052
|
id_account = 56 # Integer |
|
|
1053
1053
|
|
|
1054
1054
|
opts = {
|
|
1055
|
-
expand:
|
|
1055
|
+
expand: 'expand_example' # String |
|
|
1056
1056
|
}
|
|
1057
1057
|
|
|
1058
1058
|
begin
|
|
@@ -1075,7 +1075,7 @@ Name | Type | Description | Notes
|
|
|
1075
1075
|
|
|
1076
1076
|
### Return type
|
|
1077
1077
|
|
|
1078
|
-
[**
|
|
1078
|
+
[**InlineResponse20024**](InlineResponse20024.md)
|
|
1079
1079
|
|
|
1080
1080
|
### Authorization
|
|
1081
1081
|
|
|
@@ -1109,7 +1109,7 @@ end
|
|
|
1109
1109
|
|
|
1110
1110
|
api_instance = BudgeaClient::PFMApi.new
|
|
1111
1111
|
|
|
1112
|
-
id_user =
|
|
1112
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1113
1113
|
|
|
1114
1114
|
id_connection = 56 # Integer |
|
|
1115
1115
|
|
|
@@ -1118,7 +1118,7 @@ id_account = 56 # Integer |
|
|
|
1118
1118
|
id_operationsalert = 56 # Integer |
|
|
1119
1119
|
|
|
1120
1120
|
opts = {
|
|
1121
|
-
expand:
|
|
1121
|
+
expand: 'expand_example' # String |
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
1124
|
begin
|
|
@@ -1176,7 +1176,7 @@ end
|
|
|
1176
1176
|
|
|
1177
1177
|
api_instance = BudgeaClient::PFMApi.new
|
|
1178
1178
|
|
|
1179
|
-
id_user =
|
|
1179
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1180
1180
|
|
|
1181
1181
|
id_connection = 56 # Integer |
|
|
1182
1182
|
|
|
@@ -1185,12 +1185,12 @@ id_account = 56 # Integer |
|
|
|
1185
1185
|
id_operationsalert = 56 # Integer |
|
|
1186
1186
|
|
|
1187
1187
|
opts = {
|
|
1188
|
-
type:
|
|
1188
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
1189
1189
|
income_max: 56, # Integer | capital gain thresholds
|
|
1190
1190
|
expense_max: 56, # Integer | capital loss thresholds
|
|
1191
|
-
value_type:
|
|
1191
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
1192
1192
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
1193
|
-
expand:
|
|
1193
|
+
expand: 'expand_example' # String |
|
|
1194
1194
|
}
|
|
1195
1195
|
|
|
1196
1196
|
begin
|
|
@@ -1227,7 +1227,7 @@ Name | Type | Description | Notes
|
|
|
1227
1227
|
|
|
1228
1228
|
### HTTP request headers
|
|
1229
1229
|
|
|
1230
|
-
- **Content-Type**:
|
|
1230
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
1231
1231
|
- **Accept**: application/json
|
|
1232
1232
|
|
|
1233
1233
|
|
|
@@ -1253,19 +1253,19 @@ end
|
|
|
1253
1253
|
|
|
1254
1254
|
api_instance = BudgeaClient::PFMApi.new
|
|
1255
1255
|
|
|
1256
|
-
id_user =
|
|
1256
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1257
1257
|
|
|
1258
1258
|
id_connection = 56 # Integer |
|
|
1259
1259
|
|
|
1260
1260
|
id_account = 56 # Integer |
|
|
1261
1261
|
|
|
1262
1262
|
opts = {
|
|
1263
|
-
type:
|
|
1263
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
1264
1264
|
income_max: 56, # Integer | capital gain thresholds
|
|
1265
1265
|
expense_max: 56, # Integer | capital loss thresholds
|
|
1266
|
-
value_type:
|
|
1266
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
1267
1267
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
1268
|
-
expand:
|
|
1268
|
+
expand: 'expand_example' # String |
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
1271
1271
|
begin
|
|
@@ -1301,7 +1301,7 @@ Name | Type | Description | Notes
|
|
|
1301
1301
|
|
|
1302
1302
|
### HTTP request headers
|
|
1303
1303
|
|
|
1304
|
-
- **Content-Type**:
|
|
1304
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
|
1305
1305
|
- **Accept**: application/json
|
|
1306
1306
|
|
|
1307
1307
|
|
|
@@ -1327,14 +1327,14 @@ end
|
|
|
1327
1327
|
|
|
1328
1328
|
api_instance = BudgeaClient::PFMApi.new
|
|
1329
1329
|
|
|
1330
|
-
id_user =
|
|
1330
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1331
1331
|
|
|
1332
1332
|
id_connection = 56 # Integer |
|
|
1333
1333
|
|
|
1334
1334
|
opts = {
|
|
1335
|
-
min_date: Date.parse(
|
|
1336
|
-
max_date: Date.parse(
|
|
1337
|
-
period:
|
|
1335
|
+
min_date: Date.parse('2013-10-20'), # Date | minimal (inclusive) date
|
|
1336
|
+
max_date: Date.parse('2013-10-20'), # Date | maximal (inclusive) date
|
|
1337
|
+
period: 'period_example' # String | split output with the given period (default: month)
|
|
1338
1338
|
}
|
|
1339
1339
|
|
|
1340
1340
|
begin
|
|
@@ -1371,7 +1371,7 @@ nil (empty response body)
|
|
|
1371
1371
|
|
|
1372
1372
|
|
|
1373
1373
|
# **users_id_user_devices_get**
|
|
1374
|
-
>
|
|
1374
|
+
> InlineResponse20033 users_id_user_devices_get(id_user, opts)
|
|
1375
1375
|
|
|
1376
1376
|
Get devices
|
|
1377
1377
|
|
|
@@ -1391,10 +1391,10 @@ end
|
|
|
1391
1391
|
|
|
1392
1392
|
api_instance = BudgeaClient::PFMApi.new
|
|
1393
1393
|
|
|
1394
|
-
id_user =
|
|
1394
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1395
1395
|
|
|
1396
1396
|
opts = {
|
|
1397
|
-
expand:
|
|
1397
|
+
expand: 'expand_example' # String |
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
1400
|
begin
|
|
@@ -1415,7 +1415,7 @@ Name | Type | Description | Notes
|
|
|
1415
1415
|
|
|
1416
1416
|
### Return type
|
|
1417
1417
|
|
|
1418
|
-
[**
|
|
1418
|
+
[**InlineResponse20033**](InlineResponse20033.md)
|
|
1419
1419
|
|
|
1420
1420
|
### Authorization
|
|
1421
1421
|
|
|
@@ -1449,12 +1449,12 @@ end
|
|
|
1449
1449
|
|
|
1450
1450
|
api_instance = BudgeaClient::PFMApi.new
|
|
1451
1451
|
|
|
1452
|
-
id_user =
|
|
1452
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1453
1453
|
|
|
1454
1454
|
id_device = 56 # Integer |
|
|
1455
1455
|
|
|
1456
1456
|
opts = {
|
|
1457
|
-
expand:
|
|
1457
|
+
expand: 'expand_example' # String |
|
|
1458
1458
|
}
|
|
1459
1459
|
|
|
1460
1460
|
begin
|
|
@@ -1510,12 +1510,12 @@ end
|
|
|
1510
1510
|
|
|
1511
1511
|
api_instance = BudgeaClient::PFMApi.new
|
|
1512
1512
|
|
|
1513
|
-
id_user =
|
|
1513
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1514
1514
|
|
|
1515
1515
|
id_device = 56 # Integer |
|
|
1516
1516
|
|
|
1517
1517
|
opts = {
|
|
1518
|
-
expand:
|
|
1518
|
+
expand: 'expand_example' # String |
|
|
1519
1519
|
}
|
|
1520
1520
|
|
|
1521
1521
|
begin
|
|
@@ -1571,17 +1571,17 @@ end
|
|
|
1571
1571
|
|
|
1572
1572
|
api_instance = BudgeaClient::PFMApi.new
|
|
1573
1573
|
|
|
1574
|
-
id_user =
|
|
1574
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1575
1575
|
|
|
1576
1576
|
id_device = 56 # Integer |
|
|
1577
1577
|
|
|
1578
|
-
notification_token =
|
|
1578
|
+
notification_token = 'notification_token_example' # String | the GCM or APNS notification_token to use
|
|
1579
1579
|
|
|
1580
|
-
application =
|
|
1580
|
+
application = 'application_example' # String | the device in use
|
|
1581
1581
|
|
|
1582
1582
|
opts = {
|
|
1583
1583
|
notification_version: 56, # Integer | version of notifications
|
|
1584
|
-
expand:
|
|
1584
|
+
expand: 'expand_example' # String |
|
|
1585
1585
|
}
|
|
1586
1586
|
|
|
1587
1587
|
begin
|
|
@@ -1640,15 +1640,15 @@ end
|
|
|
1640
1640
|
|
|
1641
1641
|
api_instance = BudgeaClient::PFMApi.new
|
|
1642
1642
|
|
|
1643
|
-
id_user =
|
|
1643
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1644
1644
|
|
|
1645
|
-
notification_token =
|
|
1645
|
+
notification_token = 'notification_token_example' # String | the GCM or APNS notification_token to use
|
|
1646
1646
|
|
|
1647
|
-
application =
|
|
1647
|
+
application = 'application_example' # String | the device in use
|
|
1648
1648
|
|
|
1649
1649
|
opts = {
|
|
1650
1650
|
notification_version: 56, # Integer | version of notifications
|
|
1651
|
-
expand:
|
|
1651
|
+
expand: 'expand_example' # String |
|
|
1652
1652
|
}
|
|
1653
1653
|
|
|
1654
1654
|
begin
|
|
@@ -1706,7 +1706,7 @@ end
|
|
|
1706
1706
|
|
|
1707
1707
|
api_instance = BudgeaClient::PFMApi.new
|
|
1708
1708
|
|
|
1709
|
-
id_user =
|
|
1709
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1710
1710
|
|
|
1711
1711
|
|
|
1712
1712
|
begin
|
|
@@ -1759,10 +1759,10 @@ end
|
|
|
1759
1759
|
|
|
1760
1760
|
api_instance = BudgeaClient::PFMApi.new
|
|
1761
1761
|
|
|
1762
|
-
id_user =
|
|
1762
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1763
1763
|
|
|
1764
1764
|
opts = {
|
|
1765
|
-
expand:
|
|
1765
|
+
expand: 'expand_example' # String |
|
|
1766
1766
|
}
|
|
1767
1767
|
|
|
1768
1768
|
begin
|
|
@@ -1797,7 +1797,7 @@ Name | Type | Description | Notes
|
|
|
1797
1797
|
|
|
1798
1798
|
|
|
1799
1799
|
# **users_id_user_operationsalert_get**
|
|
1800
|
-
>
|
|
1800
|
+
> InlineResponse20024 users_id_user_operationsalert_get(id_user, opts)
|
|
1801
1801
|
|
|
1802
1802
|
Get a list of configurated alerts
|
|
1803
1803
|
|
|
@@ -1817,10 +1817,10 @@ end
|
|
|
1817
1817
|
|
|
1818
1818
|
api_instance = BudgeaClient::PFMApi.new
|
|
1819
1819
|
|
|
1820
|
-
id_user =
|
|
1820
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1821
1821
|
|
|
1822
1822
|
opts = {
|
|
1823
|
-
expand:
|
|
1823
|
+
expand: 'expand_example' # String |
|
|
1824
1824
|
}
|
|
1825
1825
|
|
|
1826
1826
|
begin
|
|
@@ -1841,7 +1841,7 @@ Name | Type | Description | Notes
|
|
|
1841
1841
|
|
|
1842
1842
|
### Return type
|
|
1843
1843
|
|
|
1844
|
-
[**
|
|
1844
|
+
[**InlineResponse20024**](InlineResponse20024.md)
|
|
1845
1845
|
|
|
1846
1846
|
### Authorization
|
|
1847
1847
|
|
|
@@ -1875,12 +1875,12 @@ end
|
|
|
1875
1875
|
|
|
1876
1876
|
api_instance = BudgeaClient::PFMApi.new
|
|
1877
1877
|
|
|
1878
|
-
id_user =
|
|
1878
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1879
1879
|
|
|
1880
1880
|
id_operationsalert = 56 # Integer |
|
|
1881
1881
|
|
|
1882
1882
|
opts = {
|
|
1883
|
-
expand:
|
|
1883
|
+
expand: 'expand_example' # String |
|
|
1884
1884
|
}
|
|
1885
1885
|
|
|
1886
1886
|
begin
|
|
@@ -1936,17 +1936,17 @@ end
|
|
|
1936
1936
|
|
|
1937
1937
|
api_instance = BudgeaClient::PFMApi.new
|
|
1938
1938
|
|
|
1939
|
-
id_user =
|
|
1939
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
1940
1940
|
|
|
1941
1941
|
id_operationsalert = 56 # Integer |
|
|
1942
1942
|
|
|
1943
1943
|
opts = {
|
|
1944
|
-
type:
|
|
1944
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
1945
1945
|
income_max: 56, # Integer | capital gain thresholds
|
|
1946
1946
|
expense_max: 56, # Integer | capital loss thresholds
|
|
1947
|
-
value_type:
|
|
1947
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
1948
1948
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
1949
|
-
expand:
|
|
1949
|
+
expand: 'expand_example' # String |
|
|
1950
1950
|
}
|
|
1951
1951
|
|
|
1952
1952
|
begin
|
|
@@ -2007,15 +2007,15 @@ end
|
|
|
2007
2007
|
|
|
2008
2008
|
api_instance = BudgeaClient::PFMApi.new
|
|
2009
2009
|
|
|
2010
|
-
id_user =
|
|
2010
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2011
2011
|
|
|
2012
2012
|
opts = {
|
|
2013
|
-
type:
|
|
2013
|
+
type: 'type_example', # String | parameter to choose the scope of the alert. accepted: transactions, investements
|
|
2014
2014
|
income_max: 56, # Integer | capital gain thresholds
|
|
2015
2015
|
expense_max: 56, # Integer | capital loss thresholds
|
|
2016
|
-
value_type:
|
|
2016
|
+
value_type: 'value_type_example', # String | whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
2017
2017
|
date_range: 56, # Integer | (number of days) range on which the analysis has to be done
|
|
2018
|
-
expand:
|
|
2018
|
+
expand: 'expand_example' # String |
|
|
2019
2019
|
}
|
|
2020
2020
|
|
|
2021
2021
|
begin
|
|
@@ -2055,7 +2055,7 @@ Name | Type | Description | Notes
|
|
|
2055
2055
|
|
|
2056
2056
|
|
|
2057
2057
|
# **users_id_user_profiles_get**
|
|
2058
|
-
>
|
|
2058
|
+
> InlineResponse20034 users_id_user_profiles_get(id_user, opts)
|
|
2059
2059
|
|
|
2060
2060
|
Get profiles
|
|
2061
2061
|
|
|
@@ -2075,10 +2075,10 @@ end
|
|
|
2075
2075
|
|
|
2076
2076
|
api_instance = BudgeaClient::PFMApi.new
|
|
2077
2077
|
|
|
2078
|
-
id_user =
|
|
2078
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2079
2079
|
|
|
2080
2080
|
opts = {
|
|
2081
|
-
expand:
|
|
2081
|
+
expand: 'expand_example' # String |
|
|
2082
2082
|
}
|
|
2083
2083
|
|
|
2084
2084
|
begin
|
|
@@ -2099,7 +2099,7 @@ Name | Type | Description | Notes
|
|
|
2099
2099
|
|
|
2100
2100
|
### Return type
|
|
2101
2101
|
|
|
2102
|
-
[**
|
|
2102
|
+
[**InlineResponse20034**](InlineResponse20034.md)
|
|
2103
2103
|
|
|
2104
2104
|
### Authorization
|
|
2105
2105
|
|
|
@@ -2133,12 +2133,12 @@ end
|
|
|
2133
2133
|
|
|
2134
2134
|
api_instance = BudgeaClient::PFMApi.new
|
|
2135
2135
|
|
|
2136
|
-
id_user =
|
|
2136
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2137
2137
|
|
|
2138
2138
|
id_profile = 56 # Integer |
|
|
2139
2139
|
|
|
2140
2140
|
opts = {
|
|
2141
|
-
expand:
|
|
2141
|
+
expand: 'expand_example' # String |
|
|
2142
2142
|
}
|
|
2143
2143
|
|
|
2144
2144
|
begin
|
|
@@ -2194,10 +2194,10 @@ end
|
|
|
2194
2194
|
|
|
2195
2195
|
api_instance = BudgeaClient::PFMApi.new
|
|
2196
2196
|
|
|
2197
|
-
id_user =
|
|
2197
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2198
2198
|
|
|
2199
2199
|
opts = {
|
|
2200
|
-
expand:
|
|
2200
|
+
expand: 'expand_example' # String |
|
|
2201
2201
|
}
|
|
2202
2202
|
|
|
2203
2203
|
begin
|
|
@@ -2252,10 +2252,10 @@ end
|
|
|
2252
2252
|
|
|
2253
2253
|
api_instance = BudgeaClient::PFMApi.new
|
|
2254
2254
|
|
|
2255
|
-
id_user =
|
|
2255
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2256
2256
|
|
|
2257
2257
|
opts = {
|
|
2258
|
-
expand:
|
|
2258
|
+
expand: 'expand_example' # String |
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
2261
|
begin
|
|
@@ -2310,17 +2310,17 @@ end
|
|
|
2310
2310
|
|
|
2311
2311
|
api_instance = BudgeaClient::PFMApi.new
|
|
2312
2312
|
|
|
2313
|
-
id_user =
|
|
2313
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2314
2314
|
|
|
2315
2315
|
opts = {
|
|
2316
|
-
email:
|
|
2317
|
-
password:
|
|
2318
|
-
current_password:
|
|
2319
|
-
contact:
|
|
2320
|
-
conf:
|
|
2316
|
+
email: 'email_example', # String | change email of profile
|
|
2317
|
+
password: 'password_example', # String | change password of profile
|
|
2318
|
+
current_password: 'current_password_example', # String | needed when changing the password or the email
|
|
2319
|
+
contact: 'contact_example', # String | change contact information of a profile
|
|
2320
|
+
conf: 'conf_example', # String | change config of a profile
|
|
2321
2321
|
state: true, # BOOLEAN | state of the profile
|
|
2322
|
-
lang:
|
|
2323
|
-
expand:
|
|
2322
|
+
lang: 'lang_example', # String | change lang of the profile
|
|
2323
|
+
expand: 'expand_example' # String |
|
|
2324
2324
|
}
|
|
2325
2325
|
|
|
2326
2326
|
begin
|
|
@@ -2382,7 +2382,7 @@ end
|
|
|
2382
2382
|
|
|
2383
2383
|
api_instance = BudgeaClient::PFMApi.new
|
|
2384
2384
|
|
|
2385
|
-
id_user =
|
|
2385
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2386
2386
|
|
|
2387
2387
|
|
|
2388
2388
|
begin
|
|
@@ -2436,7 +2436,7 @@ end
|
|
|
2436
2436
|
|
|
2437
2437
|
api_instance = BudgeaClient::PFMApi.new
|
|
2438
2438
|
|
|
2439
|
-
id_user =
|
|
2439
|
+
id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all'
|
|
2440
2440
|
|
|
2441
2441
|
opts = {
|
|
2442
2442
|
resume_enabled: true, # BOOLEAN | whether the synthesis is activated or not
|