treezor_client 1.6.0 → 1.9.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 +1 -1
- data/README.md +1 -1
- data/docs/Card.md +3 -3
- data/docs/Mandate.md +1 -0
- data/docs/Payin.md +1 -0
- data/docs/PayoutApi.md +8 -18
- data/docs/TransferApi.md +1 -11
- data/docs/User.md +1 -1
- data/docs/UserApi.md +10 -8
- data/docs/WalletApi.md +0 -2
- data/lib/treezor_client/api/payout_api.rb +9 -24
- data/lib/treezor_client/api/transfer_api.rb +2 -17
- data/lib/treezor_client/api/user_api.rb +11 -8
- data/lib/treezor_client/api/wallet_api.rb +0 -3
- data/lib/treezor_client/models/card.rb +3 -3
- data/lib/treezor_client/models/mandate.rb +14 -4
- data/lib/treezor_client/models/payin.rb +13 -4
- data/lib/treezor_client/models/user.rb +7 -7
- data/lib/treezor_client/version.rb +1 -1
- data/original_treezor_api_spec.yaml +70 -110
- data/pkg/treezor_client-1.7.0.gem +0 -0
- data/treezor_api_spec.yaml +74 -109
- metadata +3 -2
@@ -295,7 +295,6 @@ module TreezorClient
|
|
295
295
|
# @option opts [Integer] :access_user_ip Access user's ip is used for user's action restriction. More info [here](https://agent.treezor.com/basics).
|
296
296
|
# @option opts [Integer] :joint_user_id Wallet co-owner's id. This user will not be allowed to collect the money from the wallet.
|
297
297
|
# @option opts [String] :wallet_tag Custom data
|
298
|
-
# @option opts [Float] :load Initial loading amount.
|
299
298
|
# @option opts [String] :event_alias Short url wallet name. It's automatically generated by the system, but it could be modified and customised by the user. For example: www.domain.com/wallet=mywedding. Please note that the eventAlias must be unique.
|
300
299
|
# @option opts [Date] :event_date Wallet event date. Format : YYYY-MM-DD. Default: Created date + 7 days.
|
301
300
|
# @option opts [String] :event_message It can be a description of the wallet.
|
@@ -321,7 +320,6 @@ module TreezorClient
|
|
321
320
|
# @option opts [Integer] :access_user_ip Access user's ip is used for user's action restriction. More info [here](https://agent.treezor.com/basics).
|
322
321
|
# @option opts [Integer] :joint_user_id Wallet co-owner's id. This user will not be allowed to collect the money from the wallet.
|
323
322
|
# @option opts [String] :wallet_tag Custom data
|
324
|
-
# @option opts [Float] :load Initial loading amount.
|
325
323
|
# @option opts [String] :event_alias Short url wallet name. It's automatically generated by the system, but it could be modified and customised by the user. For example: www.domain.com/wallet=mywedding. Please note that the eventAlias must be unique.
|
326
324
|
# @option opts [Date] :event_date Wallet event date. Format : YYYY-MM-DD. Default: Created date + 7 days.
|
327
325
|
# @option opts [String] :event_message It can be a description of the wallet.
|
@@ -368,7 +366,6 @@ module TreezorClient
|
|
368
366
|
query_params[:'accessUserIP'] = opts[:'access_user_ip'] if !opts[:'access_user_ip'].nil?
|
369
367
|
query_params[:'jointUserId'] = opts[:'joint_user_id'] if !opts[:'joint_user_id'].nil?
|
370
368
|
query_params[:'walletTag'] = opts[:'wallet_tag'] if !opts[:'wallet_tag'].nil?
|
371
|
-
query_params[:'load'] = opts[:'load'] if !opts[:'load'].nil?
|
372
369
|
query_params[:'eventAlias'] = opts[:'event_alias'] if !opts[:'event_alias'].nil?
|
373
370
|
query_params[:'eventDate'] = opts[:'event_date'] if !opts[:'event_date'].nil?
|
374
371
|
query_params[:'eventMessage'] = opts[:'event_message'] if !opts[:'event_message'].nil?
|
@@ -259,10 +259,10 @@ module TreezorClient
|
|
259
259
|
:'pin_try_exceeds' => :'Integer',
|
260
260
|
:'masked_pan' => :'Integer',
|
261
261
|
:'embossed_name' => :'String',
|
262
|
-
:'expiry_date' => :'
|
262
|
+
:'expiry_date' => :'String',
|
263
263
|
:'cvv' => :'String',
|
264
|
-
:'start_date' => :'
|
265
|
-
:'end_date' => :'
|
264
|
+
:'start_date' => :'String',
|
265
|
+
:'end_date' => :'String',
|
266
266
|
:'country_code' => :'String',
|
267
267
|
:'currency_code' => :'String',
|
268
268
|
:'lang' => :'String',
|
@@ -90,6 +90,9 @@ module TreezorClient
|
|
90
90
|
# Date YYYY-MM-DD HH:MM:SS
|
91
91
|
attr_accessor :modified_date
|
92
92
|
|
93
|
+
# For SDDE Core third party credior mode
|
94
|
+
attr_accessor :user_id_ultimate_creditor
|
95
|
+
|
93
96
|
class EnumAttributeValidator
|
94
97
|
attr_reader :datatype
|
95
98
|
attr_reader :allowable_values
|
@@ -150,7 +153,8 @@ module TreezorClient
|
|
150
153
|
:'revocation_signature_date' => :'revocationSignatureDate',
|
151
154
|
:'created_ip' => :'createdIp',
|
152
155
|
:'created_date' => :'createdDate',
|
153
|
-
:'modified_date' => :'modifiedDate'
|
156
|
+
:'modified_date' => :'modifiedDate',
|
157
|
+
:'user_id_ultimate_creditor' => :'userIdUltimateCreditor'
|
154
158
|
}
|
155
159
|
end
|
156
160
|
|
@@ -192,7 +196,8 @@ module TreezorClient
|
|
192
196
|
:'revocation_signature_date' => :'String',
|
193
197
|
:'created_ip' => :'String',
|
194
198
|
:'created_date' => :'String',
|
195
|
-
:'modified_date' => :'String'
|
199
|
+
:'modified_date' => :'String',
|
200
|
+
:'user_id_ultimate_creditor' => :'Integer'
|
196
201
|
}
|
197
202
|
end
|
198
203
|
|
@@ -347,6 +352,10 @@ module TreezorClient
|
|
347
352
|
if attributes.has_key?(:'modifiedDate')
|
348
353
|
self.modified_date = attributes[:'modifiedDate']
|
349
354
|
end
|
355
|
+
|
356
|
+
if attributes.has_key?(:'userIdUltimateCreditor')
|
357
|
+
self.user_id_ultimate_creditor = attributes[:'userIdUltimateCreditor']
|
358
|
+
end
|
350
359
|
end
|
351
360
|
|
352
361
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -438,7 +447,8 @@ module TreezorClient
|
|
438
447
|
revocation_signature_date == o.revocation_signature_date &&
|
439
448
|
created_ip == o.created_ip &&
|
440
449
|
created_date == o.created_date &&
|
441
|
-
modified_date == o.modified_date
|
450
|
+
modified_date == o.modified_date &&
|
451
|
+
user_id_ultimate_creditor == o.user_id_ultimate_creditor
|
442
452
|
end
|
443
453
|
|
444
454
|
# @see the `==` method
|
@@ -450,7 +460,7 @@ module TreezorClient
|
|
450
460
|
# Calculates hash code according to all attributes.
|
451
461
|
# @return [Fixnum] Hash code
|
452
462
|
def hash
|
453
|
-
[mandate_id, title, legal_informations, unique_mandate_reference, mandate_status, user_id, debtor_name, debtor_address, debtor_city, debtor_zip_code, debtor_country, debtor_iban, debtor_bic, sequence_type, creditor_name, sepa_creditor_identifier, creditor_address, creditor_city, creditor_zip_code, creditor_country, signature_date, debtor_signature_ip, signed, debtor_identification_code, debtor_reference_party_name, debtor_reference_identification_code, creditor_reference_party_name, creditor_reference_identification_code, contract_identification_number, contract_description, is_paper, sdd_type, revocation_signature_date, created_ip, created_date, modified_date].hash
|
463
|
+
[mandate_id, title, legal_informations, unique_mandate_reference, mandate_status, user_id, debtor_name, debtor_address, debtor_city, debtor_zip_code, debtor_country, debtor_iban, debtor_bic, sequence_type, creditor_name, sepa_creditor_identifier, creditor_address, creditor_city, creditor_zip_code, creditor_country, signature_date, debtor_signature_ip, signed, debtor_identification_code, debtor_reference_party_name, debtor_reference_identification_code, creditor_reference_party_name, creditor_reference_identification_code, contract_identification_number, contract_description, is_paper, sdd_type, revocation_signature_date, created_ip, created_date, modified_date, user_id_ultimate_creditor].hash
|
454
464
|
end
|
455
465
|
|
456
466
|
# Builds the object from hash
|
@@ -112,6 +112,8 @@ module TreezorClient
|
|
112
112
|
|
113
113
|
attr_accessor :virtual_iban_reference
|
114
114
|
|
115
|
+
attr_accessor :dbtr_iban
|
116
|
+
|
115
117
|
class EnumAttributeValidator
|
116
118
|
attr_reader :datatype
|
117
119
|
attr_reader :allowable_values
|
@@ -184,7 +186,8 @@ module TreezorClient
|
|
184
186
|
:'creditor_iban' => :'creditorIban',
|
185
187
|
:'creditor_bic' => :'creditorBIC',
|
186
188
|
:'virtual_iban_id' => :'virtualIbanId',
|
187
|
-
:'virtual_iban_reference' => :'virtualIbanReference'
|
189
|
+
:'virtual_iban_reference' => :'virtualIbanReference',
|
190
|
+
:'dbtr_iban' => :'DbtrIBAN'
|
188
191
|
}
|
189
192
|
end
|
190
193
|
|
@@ -238,7 +241,8 @@ module TreezorClient
|
|
238
241
|
:'creditor_iban' => :'String',
|
239
242
|
:'creditor_bic' => :'String',
|
240
243
|
:'virtual_iban_id' => :'Integer',
|
241
|
-
:'virtual_iban_reference' => :'String'
|
244
|
+
:'virtual_iban_reference' => :'String',
|
245
|
+
:'dbtr_iban' => :'String'
|
242
246
|
}
|
243
247
|
end
|
244
248
|
|
@@ -441,6 +445,10 @@ module TreezorClient
|
|
441
445
|
if attributes.has_key?(:'virtualIbanReference')
|
442
446
|
self.virtual_iban_reference = attributes[:'virtualIbanReference']
|
443
447
|
end
|
448
|
+
|
449
|
+
if attributes.has_key?(:'DbtrIBAN')
|
450
|
+
self.dbtr_iban = attributes[:'DbtrIBAN']
|
451
|
+
end
|
444
452
|
end
|
445
453
|
|
446
454
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -520,7 +528,8 @@ module TreezorClient
|
|
520
528
|
creditor_iban == o.creditor_iban &&
|
521
529
|
creditor_bic == o.creditor_bic &&
|
522
530
|
virtual_iban_id == o.virtual_iban_id &&
|
523
|
-
virtual_iban_reference == o.virtual_iban_reference
|
531
|
+
virtual_iban_reference == o.virtual_iban_reference &&
|
532
|
+
dbtr_iban == o.dbtr_iban
|
524
533
|
end
|
525
534
|
|
526
535
|
# @see the `==` method
|
@@ -532,7 +541,7 @@ module TreezorClient
|
|
532
541
|
# Calculates hash code according to all attributes.
|
533
542
|
# @return [Fixnum] Hash code
|
534
543
|
def hash
|
535
|
-
[payin_id, payin_tag, payin_status, code_status, information_status, wallet_id, user_id, cart_id, wallet_event_name, wallet_alias, user_firstname, user_lastname, message_to_user, payment_method_id, subtotal_items, subtotal_services, subtotal_tax, amount, currency, distributor_fee, created_date, created_ip, payment_html, payment_language, payment_post_url, payment_post_data_url, payment_accepted_url, payment_waiting_url, payment_refused_url, payment_canceled_url, payment_exception_url, iban_fullname, iban_id, iban_bic, iban_tx_end_to_end_id, iban_tx_id, refund_amount, total_rows, forward_url, payin_date, mandate_id, creditor_name, creditor_address_line, creditor_country, creditor_iban, creditor_bic, virtual_iban_id, virtual_iban_reference].hash
|
544
|
+
[payin_id, payin_tag, payin_status, code_status, information_status, wallet_id, user_id, cart_id, wallet_event_name, wallet_alias, user_firstname, user_lastname, message_to_user, payment_method_id, subtotal_items, subtotal_services, subtotal_tax, amount, currency, distributor_fee, created_date, created_ip, payment_html, payment_language, payment_post_url, payment_post_data_url, payment_accepted_url, payment_waiting_url, payment_refused_url, payment_canceled_url, payment_exception_url, iban_fullname, iban_id, iban_bic, iban_tx_end_to_end_id, iban_tx_id, refund_amount, total_rows, forward_url, payin_date, mandate_id, creditor_name, creditor_address_line, creditor_country, creditor_iban, creditor_bic, virtual_iban_id, virtual_iban_reference, dbtr_iban].hash
|
536
545
|
end
|
537
546
|
|
538
547
|
# Builds the object from hash
|
@@ -68,7 +68,7 @@ module TreezorClient
|
|
68
68
|
|
69
69
|
attr_accessor :place_of_birth
|
70
70
|
|
71
|
-
attr_accessor :
|
71
|
+
attr_accessor :birth_country
|
72
72
|
|
73
73
|
attr_accessor :occupation
|
74
74
|
|
@@ -187,7 +187,7 @@ module TreezorClient
|
|
187
187
|
:'nationality' => :'nationality',
|
188
188
|
:'nationality_other' => :'nationalityOther',
|
189
189
|
:'place_of_birth' => :'placeOfBirth',
|
190
|
-
:'
|
190
|
+
:'birth_country' => :'birthCountry',
|
191
191
|
:'occupation' => :'occupation',
|
192
192
|
:'income_range' => :'incomeRange',
|
193
193
|
:'legal_name' => :'legalName',
|
@@ -251,7 +251,7 @@ module TreezorClient
|
|
251
251
|
:'nationality' => :'String',
|
252
252
|
:'nationality_other' => :'String',
|
253
253
|
:'place_of_birth' => :'String',
|
254
|
-
:'
|
254
|
+
:'birth_country' => :'String',
|
255
255
|
:'occupation' => :'String',
|
256
256
|
:'income_range' => :'String',
|
257
257
|
:'legal_name' => :'String',
|
@@ -401,8 +401,8 @@ module TreezorClient
|
|
401
401
|
self.place_of_birth = attributes[:'placeOfBirth']
|
402
402
|
end
|
403
403
|
|
404
|
-
if attributes.has_key?(:'
|
405
|
-
self.
|
404
|
+
if attributes.has_key?(:'birthCountry')
|
405
|
+
self.birth_country = attributes[:'birthCountry']
|
406
406
|
end
|
407
407
|
|
408
408
|
if attributes.has_key?(:'occupation')
|
@@ -595,7 +595,7 @@ module TreezorClient
|
|
595
595
|
nationality == o.nationality &&
|
596
596
|
nationality_other == o.nationality_other &&
|
597
597
|
place_of_birth == o.place_of_birth &&
|
598
|
-
|
598
|
+
birth_country == o.birth_country &&
|
599
599
|
occupation == o.occupation &&
|
600
600
|
income_range == o.income_range &&
|
601
601
|
legal_name == o.legal_name &&
|
@@ -637,7 +637,7 @@ module TreezorClient
|
|
637
637
|
# Calculates hash code according to all attributes.
|
638
638
|
# @return [Fixnum] Hash code
|
639
639
|
def hash
|
640
|
-
[user_id, user_type_id, user_status, user_tag, parent_user_id, parent_type, controlling_person_type, employee_type, specified_us_person, title, firstname, lastname, middle_names, birthday, email, address1, address2, postcode, city, state, country, country_name, phone, mobile, nationality, nationality_other, place_of_birth,
|
640
|
+
[user_id, user_type_id, user_status, user_tag, parent_user_id, parent_type, controlling_person_type, employee_type, specified_us_person, title, firstname, lastname, middle_names, birthday, email, address1, address2, postcode, city, state, country, country_name, phone, mobile, nationality, nationality_other, place_of_birth, birth_country, occupation, income_range, legal_name, legal_name_embossed, legal_registration_number, legal_tva_number, legal_registration_date, legal_form, legal_share_capital, legal_sector, legal_annual_turn_over, legal_net_income_range, legal_number_of_employee_range, effective_beneficiary, kyc_level, kyc_review, kyc_review_comment, is_freezed, language, opt_in_mailing, sepa_creditor_identifier, tax_number, tax_residence, position, personal_assets, created_date, modified_date, wallet_count, payin_count, total_rows].hash
|
641
641
|
end
|
642
642
|
|
643
643
|
# Builds the object from hash
|
@@ -1,4 +1,4 @@
|
|
1
|
-
swagger: '2.0'
|
1
|
+
swagger: '2.0'
|
2
2
|
info:
|
3
3
|
description: |
|
4
4
|
Treezor API.
|
@@ -7690,8 +7690,8 @@ paths:
|
|
7690
7690
|
get:
|
7691
7691
|
tags:
|
7692
7692
|
- payout
|
7693
|
-
summary: search
|
7694
|
-
description: Get
|
7693
|
+
summary: search payout(s)
|
7694
|
+
description: Get payout(s) that match search criteria. The request must contains at least one of those inputs payoutId, bankaccountId, beneficiaryId, payoutTypeId, payoutTag
|
7695
7695
|
operationId: getPayouts
|
7696
7696
|
consumes:
|
7697
7697
|
- application/json
|
@@ -7747,43 +7747,26 @@ paths:
|
|
7747
7747
|
required: false
|
7748
7748
|
type: string
|
7749
7749
|
- name: payoutTypeId
|
7750
|
-
in: query
|
7751
|
-
description: Pay out type's id.
|
7752
|
-
required: false
|
7753
|
-
type: integer
|
7754
|
-
- name: payoutType
|
7755
7750
|
in: query
|
7756
7751
|
description: |
|
7757
|
-
Pay out type
|
7758
|
-
|
7759
|
-
|
7752
|
+
Pay out type's id :
|
7753
|
+
|
7754
|
+
| ID | Description |
|
7755
|
+
|-----|-----|
|
7756
|
+
| 1 | Credit Transfer |
|
7757
|
+
| 2 | Direct Debit |
|
7760
7758
|
required: false
|
7761
|
-
type:
|
7759
|
+
type: integer
|
7762
7760
|
- name: walletId
|
7763
7761
|
in: query
|
7764
7762
|
description: Pay out wallet's id.
|
7765
7763
|
required: false
|
7766
7764
|
type: integer
|
7767
|
-
- name: eventAlias
|
7768
|
-
in: query
|
7769
|
-
description: Pay out wallet's event alias.
|
7770
|
-
required: false
|
7771
|
-
type: string
|
7772
7765
|
- name: userId
|
7773
7766
|
in: query
|
7774
7767
|
description: Pay out user's id.
|
7775
7768
|
required: false
|
7776
7769
|
type: integer
|
7777
|
-
- name: userName
|
7778
|
-
in: query
|
7779
|
-
description: Pay out user's name.
|
7780
|
-
required: false
|
7781
|
-
type: string
|
7782
|
-
- name: userEmail
|
7783
|
-
in: query
|
7784
|
-
description: Pay out user's email.
|
7785
|
-
required: false
|
7786
|
-
type: string
|
7787
7770
|
- name: payoutDate
|
7788
7771
|
in: query
|
7789
7772
|
description: |
|
@@ -7796,16 +7779,11 @@ paths:
|
|
7796
7779
|
description: Pay out bank account id.
|
7797
7780
|
required: false
|
7798
7781
|
type: integer
|
7799
|
-
- name:
|
7800
|
-
in: query
|
7801
|
-
description: Pay out bank account IBAN.
|
7802
|
-
required: false
|
7803
|
-
type: string
|
7804
|
-
- name: label
|
7782
|
+
- name: beneficiaryId
|
7805
7783
|
in: query
|
7806
|
-
description: Pay out
|
7784
|
+
description: Pay out beneficiary id.
|
7807
7785
|
required: false
|
7808
|
-
type:
|
7786
|
+
type: integer
|
7809
7787
|
- name: amount
|
7810
7788
|
in: query
|
7811
7789
|
description: Pay out amount.
|
@@ -8680,7 +8658,7 @@ paths:
|
|
8680
8658
|
tags:
|
8681
8659
|
- transfer
|
8682
8660
|
summary: search transfers
|
8683
|
-
description: Search for transfers in the system.
|
8661
|
+
description: Search for transfers in the system. The request must contains at least one of those inputs walletId, beneficiaryWalletId, userId, beneficiaryUserId, transferId, transferTag
|
8684
8662
|
operationId: getTransfers
|
8685
8663
|
consumes:
|
8686
8664
|
- application/json
|
@@ -8735,41 +8713,16 @@ paths:
|
|
8735
8713
|
* VALIDATED
|
8736
8714
|
required: false
|
8737
8715
|
type: string
|
8738
|
-
- name: label
|
8739
|
-
in: query
|
8740
|
-
description: Transfer's label.
|
8741
|
-
required: false
|
8742
|
-
type: string
|
8743
8716
|
- name: walletId
|
8744
8717
|
in: query
|
8745
8718
|
description: Debited wallet's id.
|
8746
8719
|
required: false
|
8747
8720
|
type: integer
|
8748
|
-
- name: walletName
|
8749
|
-
in: query
|
8750
|
-
description: Debited wallet's name.
|
8751
|
-
required: false
|
8752
|
-
type: string
|
8753
|
-
- name: walletTypeId
|
8754
|
-
in: query
|
8755
|
-
description: Debited wallet's type id.
|
8756
|
-
required: false
|
8757
|
-
type: integer
|
8758
8721
|
- name: beneficiaryWalletId
|
8759
8722
|
in: query
|
8760
8723
|
description: Credited wallet's id.
|
8761
8724
|
required: false
|
8762
8725
|
type: integer
|
8763
|
-
- name: beneficiaryWalletName
|
8764
|
-
in: query
|
8765
|
-
description: Credited wallet's name.
|
8766
|
-
required: false
|
8767
|
-
type: string
|
8768
|
-
- name: beneficiaryWalletTypeId
|
8769
|
-
in: query
|
8770
|
-
description: Credited wallet's type id.
|
8771
|
-
required: false
|
8772
|
-
type: integer
|
8773
8726
|
- name: userId
|
8774
8727
|
in: query
|
8775
8728
|
description: Debited wallet user's id.
|
@@ -9419,22 +9372,22 @@ paths:
|
|
9419
9372
|
- name: specifiedUSPerson
|
9420
9373
|
in: query
|
9421
9374
|
description: |
|
9422
|
-
Est
|
9423
|
-
Tout citoyen des
|
9424
|
-
qu
|
9425
|
-
|
9426
|
-
personne
|
9427
|
-
Une condition
|
9428
|
-
|
9429
|
-
|
9430
|
-
(i) quiconque est
|
9431
|
-
|
9432
|
-
(ii) quiconque demande
|
9433
|
-
(iii) quiconque est
|
9434
|
-
|
9435
|
-
|
9436
|
-
|
9437
|
-
longue au cours des trois
|
9375
|
+
Est considéré comme ayant la nationalité ou la citoyenneté américaine :
|
9376
|
+
Tout citoyen des États-Unis : une personne est présumée citoyen des États-Unis dès lors
|
9377
|
+
qu’elle possède un passeport américain ou qu’elle est née sur le territoire des Etats-Unis,
|
9378
|
+
même lorsqu’un tel lieu de naissance figure sur un passeport d’un autre pays, ou que la
|
9379
|
+
personne possède également une autre nationalité ou a sa résidence dans un autre pays.
|
9380
|
+
Une condition néanmoins : la personne ne doit pas avoir renoncé à la citoyenneté
|
9381
|
+
américaine ;
|
9382
|
+
• Tout résident légal des États-Unis, quelle que soit sa nationalité :
|
9383
|
+
(i) quiconque est considéré comme résident fiscal aux États-Unis aux termes de la loi
|
9384
|
+
fédérale américaine,
|
9385
|
+
(ii) quiconque demande à être traité comme résident fiscal aux États-Unis, ou
|
9386
|
+
(iii) quiconque est considéré comme résident fiscal aux termes de la loi de cet État
|
9387
|
+
américain.
|
9388
|
+
• Toute personne titulaire d’une carte de séjour permanent (green card) aux États-Unis ou
|
9389
|
+
résidant de façon permanente aux États-Unis ou y ayant passé une période suffisamment
|
9390
|
+
longue au cours des trois dernières années :
|
9438
9391
|
|
9439
9392
|
| Value | Type |
|
9440
9393
|
| --- | --- |
|
@@ -9467,6 +9420,19 @@ paths:
|
|
9467
9420
|
| 3 | None (default)|
|
9468
9421
|
required: false
|
9469
9422
|
type: integer
|
9423
|
+
- name: entityType
|
9424
|
+
in: query
|
9425
|
+
description: |
|
9426
|
+
Type of user's entity type
|
9427
|
+
| Value | Type |
|
9428
|
+
| --- | --- |
|
9429
|
+
| 1 | Reporting Financial Institution |
|
9430
|
+
| 2 | Non-Reporting Financial Institution |
|
9431
|
+
| 3 | Active Non-Financial Entity - Governmental entities, Int. organizations |
|
9432
|
+
| 4 | Active Non-Financial Entity - Other |
|
9433
|
+
| 5 | Passive Non-Financial Entity - Investment entity that is not Participating Jurisdiction FI |
|
9434
|
+
required: false
|
9435
|
+
type: integer
|
9470
9436
|
- name: title
|
9471
9437
|
in: query
|
9472
9438
|
description: |
|
@@ -10014,20 +9980,20 @@ paths:
|
|
10014
9980
|
in: query
|
10015
9981
|
description: |
|
10016
9982
|
Est considéré comme ayant la nationalité ou la citoyenneté américaine :
|
10017
|
-
Tout citoyen des États-Unis : une personne est présumée citoyen des
|
9983
|
+
Tout citoyen des États-Unis : une personne est présumée citoyen des États-Unis dès lors
|
10018
9984
|
qu’elle possède un passeport américain ou qu’elle est née sur le territoire des Etats-Unis,
|
10019
9985
|
même lorsqu’un tel lieu de naissance figure sur un passeport d’un autre pays, ou que la
|
10020
9986
|
personne possède également une autre nationalité ou a sa résidence dans un autre pays.
|
10021
9987
|
Une condition néanmoins : la personne ne doit pas avoir renoncé à la citoyenneté
|
10022
9988
|
américaine ;
|
10023
9989
|
• Tout résident légal des États-Unis, quelle que soit sa nationalité :
|
10024
|
-
(i) quiconque est considéré comme résident fiscal aux
|
9990
|
+
(i) quiconque est considéré comme résident fiscal aux États-Unis aux termes de la loi
|
10025
9991
|
fédérale américaine,
|
10026
|
-
(ii) quiconque demande à être traité comme résident fiscal aux
|
10027
|
-
(iii) quiconque est considéré comme résident fiscal aux termes de la loi de cet
|
9992
|
+
(ii) quiconque demande à être traité comme résident fiscal aux États-Unis, ou
|
9993
|
+
(iii) quiconque est considéré comme résident fiscal aux termes de la loi de cet État
|
10028
9994
|
américain.
|
10029
|
-
• Toute personne titulaire d’une carte de séjour permanent (green card) aux
|
10030
|
-
résidant de
|
9995
|
+
• Toute personne titulaire d’une carte de séjour permanent (green card) aux États-Unis ou
|
9996
|
+
résidant de façon permanente aux États-Unis ou y ayant passé une période suffisamment
|
10031
9997
|
longue au cours des trois dernières années.
|
10032
9998
|
required: false
|
10033
9999
|
type: integer
|
@@ -10266,22 +10232,22 @@ paths:
|
|
10266
10232
|
- name: specifiedUSPerson
|
10267
10233
|
in: query
|
10268
10234
|
description: |
|
10269
|
-
Est
|
10270
|
-
Tout citoyen des
|
10271
|
-
qu
|
10272
|
-
|
10273
|
-
personne
|
10274
|
-
Une condition
|
10275
|
-
|
10276
|
-
|
10277
|
-
(i) quiconque est
|
10278
|
-
|
10279
|
-
(ii) quiconque demande
|
10280
|
-
(iii) quiconque est
|
10281
|
-
|
10282
|
-
|
10283
|
-
|
10284
|
-
longue au cours des trois
|
10235
|
+
Est considéré comme ayant la nationalité ou la citoyenneté américaine :
|
10236
|
+
Tout citoyen des États-Unis : une personne est présumée citoyen des États-Unis dès lors
|
10237
|
+
qu’elle possède un passeport américain ou qu’elle est née sur le territoire des Etats-Unis,
|
10238
|
+
même lorsqu’un tel lieu de naissance figure sur un passeport d’un autre pays, ou que la
|
10239
|
+
personne possède également une autre nationalité ou a sa résidence dans un autre pays.
|
10240
|
+
Une condition néanmoins : la personne ne doit pas avoir renoncé à la citoyenneté
|
10241
|
+
américaine ;
|
10242
|
+
• Tout résident légal des États-Unis, quelle que soit sa nationalité :
|
10243
|
+
(i) quiconque est considéré comme résident fiscal aux États-Unis aux termes de la loi
|
10244
|
+
fédérale américaine,
|
10245
|
+
(ii) quiconque demande à être traité comme résident fiscal aux États-Unis, ou
|
10246
|
+
(iii) quiconque est considéré comme résident fiscal aux termes de la loi de cet État
|
10247
|
+
américain.
|
10248
|
+
• Toute personne titulaire d’une carte de séjour permanent (green card) aux États-Unis ou
|
10249
|
+
résidant de façon permanente aux États-Unis ou y ayant passé une période suffisamment
|
10250
|
+
longue au cours des trois dernières années.
|
10285
10251
|
| Value | Type |
|
10286
10252
|
| --- | --- |
|
10287
10253
|
| 0 | No |
|
@@ -10763,7 +10729,7 @@ paths:
|
|
10763
10729
|
type: string
|
10764
10730
|
- name: personalAssets
|
10765
10731
|
in: query
|
10766
|
-
description: User's personal assets range
|
10732
|
+
description: User's personal assets range expressed in k€.
|
10767
10733
|
required: false
|
10768
10734
|
type: string
|
10769
10735
|
enum: ["0-2", "3-22", "23-128", "129-319", "320-464", "465-"]
|
@@ -11462,12 +11428,6 @@ paths:
|
|
11462
11428
|
Dollar = USD … Default currency will be same as the wallet
|
11463
11429
|
required: true
|
11464
11430
|
type: string
|
11465
|
-
- name: load
|
11466
|
-
in: query
|
11467
|
-
description: Initial loading amount.
|
11468
|
-
required: false
|
11469
|
-
type: number
|
11470
|
-
format: float
|
11471
11431
|
- name: eventName
|
11472
11432
|
in: query
|
11473
11433
|
description: |
|
@@ -12417,15 +12377,15 @@ definitions:
|
|
12417
12377
|
embossedName:
|
12418
12378
|
type: string
|
12419
12379
|
expiryDate:
|
12420
|
-
type:
|
12380
|
+
type: string
|
12421
12381
|
description: Date YYYY-MM-DD
|
12422
12382
|
CVV:
|
12423
12383
|
type: string
|
12424
12384
|
startDate:
|
12425
|
-
type:
|
12385
|
+
type: string
|
12426
12386
|
description: Date YYYY-MM-DD
|
12427
12387
|
endDate:
|
12428
|
-
type:
|
12388
|
+
type: string
|
12429
12389
|
description: Date YYYY-MM-DD
|
12430
12390
|
countryCode:
|
12431
12391
|
type: string
|
@@ -12685,7 +12645,7 @@ definitions:
|
|
12685
12645
|
type: string
|
12686
12646
|
placeOfBirth:
|
12687
12647
|
type: string
|
12688
|
-
|
12648
|
+
birthCountry:
|
12689
12649
|
type: string
|
12690
12650
|
occupation:
|
12691
12651
|
type: string
|
Binary file
|