wire4_client 1.1.2 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +27 -0
- data/docs/AccountReassigned.md +1 -1
- data/docs/AccountResponse.md +1 -0
- data/docs/BeneficiaryDTO.md +10 -0
- data/docs/CargosRecurrentesApi.md +110 -0
- data/docs/CepResponse.md +1 -0
- data/docs/CepSearchBanxico.md +1 -0
- data/docs/CertificateRequest.md +1 -1
- data/docs/CodiCodeQrResponseDTO.md +1 -0
- data/docs/CodiCodeRequestDTO.md +6 -3
- data/docs/ConfirmRecurringCharge.md +9 -0
- data/docs/CuentasDeBeneficiariosSPEIApi.md +4 -0
- data/docs/CuentasDeBeneficiariosSPIDApi.md +4 -0
- data/docs/Customer.md +9 -0
- data/docs/Deposit.md +1 -0
- data/docs/Depositant.md +1 -0
- data/docs/DepositantCountResponse.md +8 -0
- data/docs/DepositantesApi.md +164 -1
- data/docs/FailedChargesDataDTO.md +13 -0
- data/docs/MessageDepositReceived.md +3 -0
- data/docs/PaymentRequestReportDTO.md +17 -0
- data/docs/PaymentRequestReq.md +18 -0
- data/docs/PaymentRequestResponse.md +10 -0
- data/docs/PaymentsSpeiAndSpidOrderId.md +9 -0
- data/docs/PaymentsSpeiAndSpidRequestId.md +12 -0
- data/docs/Person.md +1 -1
- data/docs/Product.md +11 -0
- data/docs/RecurringChargeRequest.md +14 -0
- data/docs/ReporteDeSolicitudesDePagosApi.md +107 -0
- data/docs/SolicitudDePagosApi.md +59 -0
- data/docs/SpidBeneficiaryResponse.md +1 -0
- data/docs/SuccessChargesDataDTO.md +12 -0
- data/docs/SuccessDataDTO.md +9 -0
- data/docs/TransactionSpeiSpid.md +15 -0
- data/docs/TransactionsRegister.md +11 -0
- data/docs/TransferenciasSPEIApi.md +163 -0
- data/lib/wire4_client/api/cargos_recurrentes_api.rb +143 -0
- data/lib/wire4_client/api/cuentas_de_beneficiarios_spei_api.rb +6 -0
- data/lib/wire4_client/api/cuentas_de_beneficiarios_spid_api.rb +6 -0
- data/lib/wire4_client/api/depositantes_api.rb +207 -2
- data/lib/wire4_client/api/reporte_de_solicitudes_de_pagos_api.rb +134 -0
- data/lib/wire4_client/api/solicitud_de_pagos_api.rb +84 -0
- data/lib/wire4_client/api/transferencias_spei_api.rb +234 -4
- data/lib/wire4_client/models/account_reassigned.rb +11 -11
- data/lib/wire4_client/models/account_response.rb +11 -1
- data/lib/wire4_client/models/amount_request.rb +10 -10
- data/lib/wire4_client/models/beneficiary_dto.rb +201 -0
- data/lib/wire4_client/models/cep_response.rb +45 -1
- data/lib/wire4_client/models/cep_search_banxico.rb +48 -4
- data/lib/wire4_client/models/certificate_request.rb +6 -15
- data/lib/wire4_client/models/codi_code_qr_response_dto.rb +15 -5
- data/lib/wire4_client/models/codi_code_request_dto.rb +94 -20
- data/lib/wire4_client/models/codi_operations_filters_request_dto.rb +2 -2
- data/lib/wire4_client/models/confirm_recurring_charge.rb +194 -0
- data/lib/wire4_client/models/customer.rb +205 -0
- data/lib/wire4_client/models/deposit.rb +48 -4
- data/lib/wire4_client/models/depositant.rb +14 -4
- data/lib/wire4_client/models/depositant_count_response.rb +185 -0
- data/lib/wire4_client/models/failed_charges_data_dto.rb +228 -0
- data/lib/wire4_client/models/message_deposit_received.rb +31 -1
- data/lib/wire4_client/models/operations.rb +4 -4
- data/lib/wire4_client/models/payment_codi.rb +2 -2
- data/lib/wire4_client/models/payment_request_report_dto.rb +300 -0
- data/lib/wire4_client/models/payment_request_req.rb +401 -0
- data/lib/wire4_client/models/payment_request_response.rb +204 -0
- data/lib/wire4_client/models/payments_spei_and_spid_order_id.rb +199 -0
- data/lib/wire4_client/models/payments_spei_and_spid_request_id.rb +229 -0
- data/lib/wire4_client/models/person.rb +0 -5
- data/lib/wire4_client/models/product.rb +288 -0
- data/lib/wire4_client/models/recurring_charge_request.rb +278 -0
- data/lib/wire4_client/models/sales_point_request.rb +5 -5
- data/lib/wire4_client/models/spid_beneficiary_response.rb +11 -1
- data/lib/wire4_client/models/success_charges_data_dto.rb +219 -0
- data/lib/wire4_client/models/success_data_dto.rb +226 -0
- data/lib/wire4_client/models/transaction_outgoing.rb +5 -5
- data/lib/wire4_client/models/transaction_spei_spid.rb +390 -0
- data/lib/wire4_client/models/transactions_register.rb +229 -0
- data/lib/wire4_client/version.rb +1 -1
- data/lib/wire4_client.rb +19 -0
- data/spec/api/cargos_recurrentes_api_spec.rb +61 -0
- data/spec/api/cuentas_de_beneficiarios_spei_api_spec.rb +2 -0
- data/spec/api/cuentas_de_beneficiarios_spid_api_spec.rb +2 -0
- data/spec/api/depositantes_api_spec.rb +42 -1
- data/spec/api/reporte_de_solicitudes_de_pagos_api_spec.rb +59 -0
- data/spec/api/solicitud_de_pagos_api_spec.rb +48 -0
- data/spec/api/transferencias_spei_api_spec.rb +42 -0
- data/spec/models/account_reassigned_spec.rb +3 -3
- data/spec/models/account_response_spec.rb +6 -0
- data/spec/models/beneficiary_dto_spec.rb +53 -0
- data/spec/models/cep_response_spec.rb +10 -0
- data/spec/models/cep_search_banxico_spec.rb +10 -0
- data/spec/models/codi_code_qr_response_dto_spec.rb +8 -2
- data/spec/models/codi_code_request_dto_spec.rb +23 -1
- data/spec/models/codi_operations_filters_request_dto_spec.rb +1 -1
- data/spec/models/confirm_recurring_charge_spec.rb +47 -0
- data/spec/models/customer_spec.rb +47 -0
- data/spec/models/deposit_spec.rb +10 -0
- data/spec/models/depositant_count_response_spec.rb +41 -0
- data/spec/models/depositant_spec.rb +6 -0
- data/spec/models/failed_charges_data_dto_spec.rb +71 -0
- data/spec/models/message_deposit_received_spec.rb +18 -0
- data/spec/models/operations_spec.rb +2 -2
- data/spec/models/payment_codi_spec.rb +1 -1
- data/spec/models/payment_request_report_dto_spec.rb +99 -0
- data/spec/models/payment_request_req_spec.rb +109 -0
- data/spec/models/payment_request_response_spec.rb +53 -0
- data/spec/models/payments_spei_and_spid_order_id_spec.rb +47 -0
- data/spec/models/payments_spei_and_spid_request_id_spec.rb +65 -0
- data/spec/models/product_spec.rb +63 -0
- data/spec/models/recurring_charge_request_spec.rb +77 -0
- data/spec/models/spid_beneficiary_response_spec.rb +6 -0
- data/spec/models/success_charges_data_dto_spec.rb +65 -0
- data/spec/models/success_data_dto_spec.rb +51 -0
- data/spec/models/transaction_spei_spid_spec.rb +83 -0
- data/spec/models/transactions_register_spec.rb +59 -0
- data/wire4_client-1.1.3.gem +0 -0
- data/wire4_client.gemspec +7 -7
- metadata +108 -55
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f3f194ec792c4f4d218678834d8c0c3473847541d64d774cbb0b10e173b6253
|
4
|
+
data.tar.gz: 5ca9392352bf883b1c3e89068768168315efbe7659d95230a276cd82ddd8e5ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f13ad1a27cc251a40e998ee200542a3cde626967eaa6f7c26644bcfa640974520f5934b9cb3d6d27cc6ede6f8b05cad897107c17ad9df42b1cfd5019cb6335b
|
7
|
+
data.tar.gz: f4f6c53722dcaf395a3d704b1fa135e136e86f45bb5833492e165db8a1d1d996debe82dfb1b9ddb8594833aaf6668d4086c67d70022d0ad0f6c90b1754d5bc21
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -79,6 +79,8 @@ Class | Method | HTTP request | Description
|
|
79
79
|
------------ | ------------- | ------------- | -------------
|
80
80
|
*Wire4Client::AutorizacinDeDepsitosApi* | [**get_deposit_auth_configurations**](docs/AutorizacinDeDepsitosApi.md#get_deposit_auth_configurations) | **GET** /subscriptions/{subscription}/configurations/deposit-authorization | Consulta autorización de depósitos
|
81
81
|
*Wire4Client::AutorizacinDeDepsitosApi* | [**put_deposit_auth_configurations**](docs/AutorizacinDeDepsitosApi.md#put_deposit_auth_configurations) | **PUT** /subscriptions/{subscription}/configurations/deposit-authorization | Habilita / Deshabilita la autorización de depósitos
|
82
|
+
*Wire4Client::CargosRecurrentesApi* | [**delete_recurring_charge_using_delete**](docs/CargosRecurrentesApi.md#delete_recurring_charge_using_delete) | **DELETE** /recurring-charge/{orderId} | Cancelación/desubscripción de cargos recurrentes
|
83
|
+
*Wire4Client::CargosRecurrentesApi* | [**register_recurring_charge_using_post**](docs/CargosRecurrentesApi.md#register_recurring_charge_using_post) | **POST** /recurring-charge | Registro de cargos recurrentes
|
82
84
|
*Wire4Client::ComprobanteElectrnicoDePagoCEPApi* | [**obtain_transaction_cep_using_post**](docs/ComprobanteElectrnicoDePagoCEPApi.md#obtain_transaction_cep_using_post) | **POST** /ceps | Consulta de CEP
|
83
85
|
*Wire4Client::ContactoApi* | [**send_contact_using_post**](docs/ContactoApi.md#send_contact_using_post) | **POST** /contact | Solicitud de contacto
|
84
86
|
*Wire4Client::ContractsDetailsApi* | [**create_authorization**](docs/ContractsDetailsApi.md#create_authorization) | **POST** /onboarding/accounts/authorize | Devuelve la URL para autorización del usuario Monex
|
@@ -95,8 +97,11 @@ Class | Method | HTTP request | Description
|
|
95
97
|
*Wire4Client::CuentasDeBeneficiariosSPEIApi* | [**update_amount_limit_account_using_put**](docs/CuentasDeBeneficiariosSPEIApi.md#update_amount_limit_account_using_put) | **PUT** /subscriptions/{subscription}/beneficiaries/spei/{account} | Solicitud para actualizar el monto límite de una cuenta
|
96
98
|
*Wire4Client::CuentasDeBeneficiariosSPIDApi* | [**get_spid_beneficiaries_for_account**](docs/CuentasDeBeneficiariosSPIDApi.md#get_spid_beneficiaries_for_account) | **GET** /subscriptions/{subscription}/beneficiaries/spid | Consulta los beneficiarios SPID registrados
|
97
99
|
*Wire4Client::CuentasDeBeneficiariosSPIDApi* | [**pre_register_accounts_using_post1**](docs/CuentasDeBeneficiariosSPIDApi.md#pre_register_accounts_using_post1) | **POST** /subscriptions/{subscription}/beneficiaries/spid | Pre-registro de cuentas de beneficiarios SPID®
|
100
|
+
*Wire4Client::DepositantesApi* | [**get_depositants_totals_using_get**](docs/DepositantesApi.md#get_depositants_totals_using_get) | **GET** /subscriptions/{subscription}/depositants/count | Número de depositantes por suscripción
|
98
101
|
*Wire4Client::DepositantesApi* | [**get_depositants_using_get**](docs/DepositantesApi.md#get_depositants_using_get) | **GET** /subscriptions/{subscription}/depositants | Consulta de cuentas de depositantes
|
99
102
|
*Wire4Client::DepositantesApi* | [**register_depositants_using_post**](docs/DepositantesApi.md#register_depositants_using_post) | **POST** /subscriptions/{subscription}/depositants | Registra un nuevo depositante
|
103
|
+
*Wire4Client::DepositantesApi* | [**update_status_depositants_no_suscrption_using_patch**](docs/DepositantesApi.md#update_status_depositants_no_suscrption_using_patch) | **PATCH** /depositants/{account}/{action} | Solicitud para actualizar el estado de un depositante sin utilizar la suscripción
|
104
|
+
*Wire4Client::DepositantesApi* | [**update_status_depositants_using_patch**](docs/DepositantesApi.md#update_status_depositants_using_patch) | **PATCH** /subscriptions/{subscription}/depositants/{account}/{action} | Solicitud para actualizar el estado de un depossitante
|
100
105
|
*Wire4Client::EmpresasCoDiApi* | [**obtain_companies**](docs/EmpresasCoDiApi.md#obtain_companies) | **GET** /codi/companies | Consulta de empresas CODI®
|
101
106
|
*Wire4Client::EmpresasCoDiApi* | [**register_company_using_post**](docs/EmpresasCoDiApi.md#register_company_using_post) | **POST** /codi/companies | Registro de empresas CODI®
|
102
107
|
*Wire4Client::FacturasApi* | [**billings_report_by_id_using_get**](docs/FacturasApi.md#billings_report_by_id_using_get) | **GET** /billings/{id} | Consulta de facturas por identificador
|
@@ -109,7 +114,10 @@ Class | Method | HTTP request | Description
|
|
109
114
|
*Wire4Client::PeticionesDePagoPorCoDiApi* | [**generate_codi_code_qr**](docs/PeticionesDePagoPorCoDiApi.md#generate_codi_code_qr) | **POST** /codi/sales-point/charges | Genera código QR
|
110
115
|
*Wire4Client::PuntosDeVentaCoDiApi* | [**create_sales_point**](docs/PuntosDeVentaCoDiApi.md#create_sales_point) | **POST** /codi/companies/salespoint | Registro de punto de venta.
|
111
116
|
*Wire4Client::PuntosDeVentaCoDiApi* | [**obtain_sale_points**](docs/PuntosDeVentaCoDiApi.md#obtain_sale_points) | **GET** /codi/companies/salespoint | Consulta de puntos de venta
|
117
|
+
*Wire4Client::ReporteDeSolicitudesDePagosApi* | [**payment_request_id_report_by_order_id_using_get**](docs/ReporteDeSolicitudesDePagosApi.md#payment_request_id_report_by_order_id_using_get) | **GET** /payment-request | Consulta de solicitudes de pago por numero de orden.
|
118
|
+
*Wire4Client::ReporteDeSolicitudesDePagosApi* | [**payment_request_id_report_using_get**](docs/ReporteDeSolicitudesDePagosApi.md#payment_request_id_report_using_get) | **GET** /payment-request/{requestId} | Consulta de solicitudes de pago por identificador de petición
|
112
119
|
*Wire4Client::SaldoApi* | [**get_balance_using_get**](docs/SaldoApi.md#get_balance_using_get) | **GET** /subscriptions/{subscription}/balance | Consulta los saldo de una cuenta
|
120
|
+
*Wire4Client::SolicitudDePagosApi* | [**register_payment_request_using_post**](docs/SolicitudDePagosApi.md#register_payment_request_using_post) | **POST** /payment-request | Registro de solicitud de pagos
|
113
121
|
*Wire4Client::SuscripcionesApi* | [**change_subscription_status_using_put**](docs/SuscripcionesApi.md#change_subscription_status_using_put) | **PUT** /subscriptions/{subscription}/status | Cambia el estatus de la suscripción
|
114
122
|
*Wire4Client::SuscripcionesApi* | [**change_subscription_use_using_patch**](docs/SuscripcionesApi.md#change_subscription_use_using_patch) | **PATCH** /subscriptions/{subscription} | Cambia el uso de la suscripción
|
115
123
|
*Wire4Client::SuscripcionesApi* | [**pre_enrollment_monex_user_using_post**](docs/SuscripcionesApi.md#pre_enrollment_monex_user_using_post) | **POST** /subscriptions/pre-subscription | Pre-registro de una suscripción
|
@@ -119,8 +127,11 @@ Class | Method | HTTP request | Description
|
|
119
127
|
*Wire4Client::TransferenciasSPEIApi* | [**drop_transactions_pending_using_delete**](docs/TransferenciasSPEIApi.md#drop_transactions_pending_using_delete) | **DELETE** /subscriptions/{subscription}/transactions/outcoming/spei/request/{requestId} | Eliminación de transferencias SPEI® pendientes
|
120
128
|
*Wire4Client::TransferenciasSPEIApi* | [**incoming_spei_transactions_report_using_get**](docs/TransferenciasSPEIApi.md#incoming_spei_transactions_report_using_get) | **GET** /subscriptions/{subscription}/transactions/incoming/spei | Consulta de transferencias recibidas
|
121
129
|
*Wire4Client::TransferenciasSPEIApi* | [**out_comming_spei_request_id_transactions_report_using_get**](docs/TransferenciasSPEIApi.md#out_comming_spei_request_id_transactions_report_using_get) | **GET** /subscriptions/{subscription}/transactions/outcoming/spei/{requestId} | Consulta de transferencias de salida por identificador de petición
|
130
|
+
*Wire4Client::TransferenciasSPEIApi* | [**out_comming_spei_spid_order_id_transaction_report_using_get**](docs/TransferenciasSPEIApi.md#out_comming_spei_spid_order_id_transaction_report_using_get) | **GET** /subscriptions/{subscription}/transactions/outcoming | Consulta de transferencias realizadas por order_id
|
131
|
+
*Wire4Client::TransferenciasSPEIApi* | [**out_comming_spei_spid_request_id_transactions_report_using_get**](docs/TransferenciasSPEIApi.md#out_comming_spei_spid_request_id_transactions_report_using_get) | **GET** /subscriptions/{subscription}/transactions/outcoming/{requestId} | Consulta de transferencias de salida por identificador de petición
|
122
132
|
*Wire4Client::TransferenciasSPEIApi* | [**outgoing_spei_transactions_report_using_get**](docs/TransferenciasSPEIApi.md#outgoing_spei_transactions_report_using_get) | **GET** /subscriptions/{subscription}/transactions/outcoming/spei | Consulta de transferencias realizadas
|
123
133
|
*Wire4Client::TransferenciasSPEIApi* | [**register_outgoing_spei_transaction_using_post**](docs/TransferenciasSPEIApi.md#register_outgoing_spei_transaction_using_post) | **POST** /subscriptions/{subscription}/transactions/outcoming/spei | Registro de transferencias
|
134
|
+
*Wire4Client::TransferenciasSPEIApi* | [**register_spei_spid_outgoing_transactions_using_post**](docs/TransferenciasSPEIApi.md#register_spei_spid_outgoing_transactions_using_post) | **POST** /subscriptions/{subscription}/transactions/outcoming | Registro de transferencias SPEI y SPID
|
124
135
|
*Wire4Client::TransferenciasSPIDApi* | [**get_spid_classifications_using_get**](docs/TransferenciasSPIDApi.md#get_spid_classifications_using_get) | **GET** /subscriptions/{subscription}/beneficiaries/spid/classifications | Consulta de clasificaciones para operaciones SPID®
|
125
136
|
*Wire4Client::TransferenciasSPIDApi* | [**register_outgoing_spid_transaction_using_post**](docs/TransferenciasSPIDApi.md#register_outgoing_spid_transaction_using_post) | **POST** /subscriptions/{subscription}/transactions/outcoming/spid | Registro de transferencias SPID®
|
126
137
|
*Wire4Client::WebhooksApi* | [**get_webhook**](docs/WebhooksApi.md#get_webhook) | **GET** /webhooks/{webhook_id} | Consulta de Webhook
|
@@ -145,6 +156,7 @@ Class | Method | HTTP request | Description
|
|
145
156
|
- [Wire4Client::BalanceListResponse](docs/BalanceListResponse.md)
|
146
157
|
- [Wire4Client::BeneficiariesQueryRegisterStatus](docs/BeneficiariesQueryRegisterStatus.md)
|
147
158
|
- [Wire4Client::BeneficiariesResponse](docs/BeneficiariesResponse.md)
|
159
|
+
- [Wire4Client::BeneficiaryDTO](docs/BeneficiaryDTO.md)
|
148
160
|
- [Wire4Client::BeneficiaryInstitution](docs/BeneficiaryInstitution.md)
|
149
161
|
- [Wire4Client::Billing](docs/Billing.md)
|
150
162
|
- [Wire4Client::BillingTransaction](docs/BillingTransaction.md)
|
@@ -159,17 +171,21 @@ Class | Method | HTTP request | Description
|
|
159
171
|
- [Wire4Client::CompanyRequested](docs/CompanyRequested.md)
|
160
172
|
- [Wire4Client::Compay](docs/Compay.md)
|
161
173
|
- [Wire4Client::ConfigurationsLimits](docs/ConfigurationsLimits.md)
|
174
|
+
- [Wire4Client::ConfirmRecurringCharge](docs/ConfirmRecurringCharge.md)
|
162
175
|
- [Wire4Client::ContactRequest](docs/ContactRequest.md)
|
163
176
|
- [Wire4Client::ContractDetailRequest](docs/ContractDetailRequest.md)
|
164
177
|
- [Wire4Client::ContractDetailResponse](docs/ContractDetailResponse.md)
|
178
|
+
- [Wire4Client::Customer](docs/Customer.md)
|
165
179
|
- [Wire4Client::Deposit](docs/Deposit.md)
|
166
180
|
- [Wire4Client::DepositAuthorizationRequest](docs/DepositAuthorizationRequest.md)
|
167
181
|
- [Wire4Client::Depositant](docs/Depositant.md)
|
182
|
+
- [Wire4Client::DepositantCountResponse](docs/DepositantCountResponse.md)
|
168
183
|
- [Wire4Client::DepositantsRegister](docs/DepositantsRegister.md)
|
169
184
|
- [Wire4Client::DepositantsResponse](docs/DepositantsResponse.md)
|
170
185
|
- [Wire4Client::DepositsAuthorizationResponse](docs/DepositsAuthorizationResponse.md)
|
171
186
|
- [Wire4Client::DetailedErrorResponse](docs/DetailedErrorResponse.md)
|
172
187
|
- [Wire4Client::ErrorResponse](docs/ErrorResponse.md)
|
188
|
+
- [Wire4Client::FailedChargesDataDTO](docs/FailedChargesDataDTO.md)
|
173
189
|
- [Wire4Client::GetDepositants](docs/GetDepositants.md)
|
174
190
|
- [Wire4Client::Institution](docs/Institution.md)
|
175
191
|
- [Wire4Client::InstitutionsList](docs/InstitutionsList.md)
|
@@ -193,11 +209,18 @@ Class | Method | HTTP request | Description
|
|
193
209
|
- [Wire4Client::Payment](docs/Payment.md)
|
194
210
|
- [Wire4Client::PaymentCODI](docs/PaymentCODI.md)
|
195
211
|
- [Wire4Client::PaymentRequestCodiResponseDTO](docs/PaymentRequestCodiResponseDTO.md)
|
212
|
+
- [Wire4Client::PaymentRequestReportDTO](docs/PaymentRequestReportDTO.md)
|
213
|
+
- [Wire4Client::PaymentRequestReq](docs/PaymentRequestReq.md)
|
214
|
+
- [Wire4Client::PaymentRequestResponse](docs/PaymentRequestResponse.md)
|
196
215
|
- [Wire4Client::PaymentsRequestId](docs/PaymentsRequestId.md)
|
216
|
+
- [Wire4Client::PaymentsSpeiAndSpidOrderId](docs/PaymentsSpeiAndSpidOrderId.md)
|
217
|
+
- [Wire4Client::PaymentsSpeiAndSpidRequestId](docs/PaymentsSpeiAndSpidRequestId.md)
|
197
218
|
- [Wire4Client::Person](docs/Person.md)
|
198
219
|
- [Wire4Client::PreEnrollmentData](docs/PreEnrollmentData.md)
|
199
220
|
- [Wire4Client::PreEnrollmentResponse](docs/PreEnrollmentResponse.md)
|
200
221
|
- [Wire4Client::PreMonexAuthorization](docs/PreMonexAuthorization.md)
|
222
|
+
- [Wire4Client::Product](docs/Product.md)
|
223
|
+
- [Wire4Client::RecurringChargeRequest](docs/RecurringChargeRequest.md)
|
201
224
|
- [Wire4Client::Relationship](docs/Relationship.md)
|
202
225
|
- [Wire4Client::RelationshipsResponse](docs/RelationshipsResponse.md)
|
203
226
|
- [Wire4Client::SalesPoint](docs/SalesPoint.md)
|
@@ -210,11 +233,15 @@ Class | Method | HTTP request | Description
|
|
210
233
|
- [Wire4Client::SpidClassificationDTO](docs/SpidClassificationDTO.md)
|
211
234
|
- [Wire4Client::SpidClassificationsResponseDTO](docs/SpidClassificationsResponseDTO.md)
|
212
235
|
- [Wire4Client::SubscriptionChangeStatusRequest](docs/SubscriptionChangeStatusRequest.md)
|
236
|
+
- [Wire4Client::SuccessChargesDataDTO](docs/SuccessChargesDataDTO.md)
|
237
|
+
- [Wire4Client::SuccessDataDTO](docs/SuccessDataDTO.md)
|
213
238
|
- [Wire4Client::TokenRequiredResponse](docs/TokenRequiredResponse.md)
|
214
239
|
- [Wire4Client::TransactionErrorCode](docs/TransactionErrorCode.md)
|
215
240
|
- [Wire4Client::TransactionOutgoing](docs/TransactionOutgoing.md)
|
216
241
|
- [Wire4Client::TransactionOutgoingSpid](docs/TransactionOutgoingSpid.md)
|
242
|
+
- [Wire4Client::TransactionSpeiSpid](docs/TransactionSpeiSpid.md)
|
217
243
|
- [Wire4Client::TransactionsOutgoingRegister](docs/TransactionsOutgoingRegister.md)
|
244
|
+
- [Wire4Client::TransactionsRegister](docs/TransactionsRegister.md)
|
218
245
|
- [Wire4Client::UpdateConfigurationsRequestDTO](docs/UpdateConfigurationsRequestDTO.md)
|
219
246
|
- [Wire4Client::UrlsRedirect](docs/UrlsRedirect.md)
|
220
247
|
- [Wire4Client::UseServiceBanking](docs/UseServiceBanking.md)
|
data/docs/AccountReassigned.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**amount_limit** | **Float** | Es el monto límite permitido que se registra para la cuenta. Por ejemplo 1000.00. |
|
7
|
+
**authorization_date** | **DateTime** | Es la fecha en la que se autorizó el registro del beneficiario. Ésta fecha viene en formato ISO 8601 con zona horaria, ejemplo: <strong>2020-10-27T11:03:15.000-06:00</strong>. | [optional]
|
7
8
|
**bank** | [**Institution**](Institution.md) | Es el banco al cuál pertenece la cuenta. | [optional]
|
8
9
|
**beneficiary_account** | **String** | Es la cuenta del beneficiario, podría ser teléfono celular (se valida que sea de 10 dígitos), Tarjeta de débito (TDD, se valida que sea de 16 dígitos) o cuenta CLABE (se valida que sea de 18 dígitos). <br/><br/>Por ejemplo Teléfono celular: 5525072600, TDD: 4323 1234 5678 9123, CLABE: 032180000118359719. |
|
9
|
-
**currency_code** | **String** | Es el código de divisa. Es en el formato estándar de 3 dígitos, por ejemplo para el peso mexicano: <b>MXP</b>, para el dólar estadounidense: <b>USD</b>.<br/><br/>Este dato es opcional, al registrar una cuenta si no se cuenta con este valor se asignará <b>MXP</b> | [optional]
|
10
10
|
**email** | **Array<String>** | Es una lista de correos electrónicos (emails). Se valida el formato de email. Este campo es opcional. | [optional]
|
11
11
|
**institution** | [**BeneficiaryInstitution**](BeneficiaryInstitution.md) | Es el objeto que contiene el nombre de la institución, es mutuamente exclusivo con el objeto Person. | [optional]
|
12
12
|
**kind_of_relationship** | **String** | Es el tipo de relación que se tiene con el propietario de la cuenta. Para registrar una cuenta, este valor se debe obtener del recurso <a href=\"#operation/getAvailableRelationshipsMonexUsingGET\">relationships.</a> <br /><br /><b>Nota:</b> <em>Si en la respuesta de Monex esta propiedad es nula, tampoco estará presente en esta respuesta.</em> |
|
data/docs/AccountResponse.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**amount_limit** | **Float** | Es el monto límite permitido que se registra para la cuenta. Por ejemplo 1000.00. |
|
7
|
+
**authorization_date** | **DateTime** | Es la fecha en la que se autorizó el registro del beneficiario. Ésta fecha viene en formato ISO 8601 con zona horaria, ejemplo: <strong>2020-10-27T11:03:15.000-06:00</strong>. | [optional]
|
7
8
|
**bank** | [**Institution**](Institution.md) | Es el banco al cuál pertenece la cuenta. | [optional]
|
8
9
|
**beneficiary_account** | **String** | Es la cuenta del beneficiario, podría ser teléfono celular (se valida que sea de 10 dígitos), Tarjeta de débito (TDD, se valida que sea de 16 dígitos) o cuenta CLABE (se valida que sea de 18 dígitos). <br/><br/>Por ejemplo Teléfono celular: 5525072600, TDD: 4323 1234 5678 9123, CLABE: 032180000118359719. |
|
9
10
|
**email** | **Array<String>** | Es una lista de correos electrónicos (emails). Se valida el formato de email. Este campo es opcional. | [optional]
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Wire4Client::BeneficiaryDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**account** | **String** | | [optional]
|
7
|
+
**account_type** | **Integer** | | [optional]
|
8
|
+
**name** | **String** | | [optional]
|
9
|
+
|
10
|
+
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# Wire4Client::CargosRecurrentesApi
|
2
|
+
|
3
|
+
All URIs are relative to *https://sandbox-api.wire4.mx/wire4/1.0.0*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**delete_recurring_charge_using_delete**](CargosRecurrentesApi.md#delete_recurring_charge_using_delete) | **DELETE** /recurring-charge/{orderId} | Cancelación/desubscripción de cargos recurrentes
|
8
|
+
[**register_recurring_charge_using_post**](CargosRecurrentesApi.md#register_recurring_charge_using_post) | **POST** /recurring-charge | Registro de cargos recurrentes
|
9
|
+
|
10
|
+
|
11
|
+
# **delete_recurring_charge_using_delete**
|
12
|
+
> ConfirmRecurringCharge delete_recurring_charge_using_delete(authorization, order_id)
|
13
|
+
|
14
|
+
Cancelación/desubscripción de cargos recurrentes
|
15
|
+
|
16
|
+
Se solicita la desuscripción de un cargo recurrente activo. En el request llevará el orderId que identifica el cargo recurrente a eliminar/dar de baja se deshabilitará tanto de openpay como del sistem wire4.<br> Nota: Debe considerar que para hacer uso de esta funcionalidad debe contar con un scope especial
|
17
|
+
|
18
|
+
### Example
|
19
|
+
```ruby
|
20
|
+
# load the gem
|
21
|
+
require 'wire4_client'
|
22
|
+
|
23
|
+
api_instance = Wire4Client::CargosRecurrentesApi.new
|
24
|
+
|
25
|
+
authorization = 'authorization_example' # String | Header para token
|
26
|
+
|
27
|
+
order_id = 'order_id_example' # String | orderId
|
28
|
+
|
29
|
+
|
30
|
+
begin
|
31
|
+
#Cancelación/desubscripción de cargos recurrentes
|
32
|
+
result = api_instance.delete_recurring_charge_using_delete(authorization, order_id)
|
33
|
+
p result
|
34
|
+
rescue Wire4Client::ApiError => e
|
35
|
+
puts "Exception when calling CargosRecurrentesApi->delete_recurring_charge_using_delete: #{e}"
|
36
|
+
end
|
37
|
+
```
|
38
|
+
|
39
|
+
### Parameters
|
40
|
+
|
41
|
+
Name | Type | Description | Notes
|
42
|
+
------------- | ------------- | ------------- | -------------
|
43
|
+
**authorization** | **String**| Header para token |
|
44
|
+
**order_id** | **String**| orderId |
|
45
|
+
|
46
|
+
### Return type
|
47
|
+
|
48
|
+
[**ConfirmRecurringCharge**](ConfirmRecurringCharge.md)
|
49
|
+
|
50
|
+
### Authorization
|
51
|
+
|
52
|
+
No authorization required
|
53
|
+
|
54
|
+
### HTTP request headers
|
55
|
+
|
56
|
+
- **Content-Type**: Not defined
|
57
|
+
- **Accept**: application/json
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
# **register_recurring_charge_using_post**
|
62
|
+
> ConfirmRecurringCharge register_recurring_charge_using_post(authorization, request_recurring_charge)
|
63
|
+
|
64
|
+
Registro de cargos recurrentes
|
65
|
+
|
66
|
+
Se registra una solicitud para generar un plan de cargos recurrentes. En la respuesta se proporcionará una dirección URL que lo llevará al sitio donde se le solicitará ingresar los datos de tarjeta a la que se aplicarán los cargos de acuerdo al plan seleccionado.<br> Nota: Debe considerar que para hacer uso de esta funcionalidad debe contar con un scope especial
|
67
|
+
|
68
|
+
### Example
|
69
|
+
```ruby
|
70
|
+
# load the gem
|
71
|
+
require 'wire4_client'
|
72
|
+
|
73
|
+
api_instance = Wire4Client::CargosRecurrentesApi.new
|
74
|
+
|
75
|
+
authorization = 'authorization_example' # String | Header para token
|
76
|
+
|
77
|
+
request_recurring_charge = Wire4Client::RecurringChargeRequest.new # RecurringChargeRequest | Información de la solicitud para aplicar cargos recurrentes
|
78
|
+
|
79
|
+
|
80
|
+
begin
|
81
|
+
#Registro de cargos recurrentes
|
82
|
+
result = api_instance.register_recurring_charge_using_post(authorization, request_recurring_charge)
|
83
|
+
p result
|
84
|
+
rescue Wire4Client::ApiError => e
|
85
|
+
puts "Exception when calling CargosRecurrentesApi->register_recurring_charge_using_post: #{e}"
|
86
|
+
end
|
87
|
+
```
|
88
|
+
|
89
|
+
### Parameters
|
90
|
+
|
91
|
+
Name | Type | Description | Notes
|
92
|
+
------------- | ------------- | ------------- | -------------
|
93
|
+
**authorization** | **String**| Header para token |
|
94
|
+
**request_recurring_charge** | [**RecurringChargeRequest**](RecurringChargeRequest.md)| Información de la solicitud para aplicar cargos recurrentes |
|
95
|
+
|
96
|
+
### Return type
|
97
|
+
|
98
|
+
[**ConfirmRecurringCharge**](ConfirmRecurringCharge.md)
|
99
|
+
|
100
|
+
### Authorization
|
101
|
+
|
102
|
+
No authorization required
|
103
|
+
|
104
|
+
### HTTP request headers
|
105
|
+
|
106
|
+
- **Content-Type**: application/json
|
107
|
+
- **Accept**: application/json
|
108
|
+
|
109
|
+
|
110
|
+
|
data/docs/CepResponse.md
CHANGED
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
|
|
23
23
|
**sender_name** | **String** | Es el nombre del emisor. | [optional]
|
24
24
|
**sender_rfc** | **String** | Es el Registro Federal de Contribuyentes (RFC) del emisor. | [optional]
|
25
25
|
**signature** | **String** | Firma del CEP.. | [optional]
|
26
|
+
**type** | **String** | Es el tiop de CEP, puede ser: <strong>SPEI</strong> o <strong>SPID</strong>. | [optional]
|
26
27
|
**url_zip** | **String** | La url al archivo zip del CEP, el cual contiene el xml y pdf | [optional]
|
27
28
|
|
28
29
|
|
data/docs/CepSearchBanxico.md
CHANGED
@@ -11,5 +11,6 @@ Name | Type | Description | Notes
|
|
11
11
|
**reference** | **String** | Es la referencia numérica de la transferencia. Se valida hasta 7 dígitos. | [optional]
|
12
12
|
**sender_account** | **String** | Es la cuenta ordenante, es requerida cuando se no se envía la clave del banco ordenante. | [optional]
|
13
13
|
**sender_bank_key** | **String** | Es la clave del banco ordenante, es requerida cuando no se envía la cuenta ordenante. Se puede obtener del recurso de las <a href=\"#operation/getAllInstitutionsUsingGET\">instituciones.</a> | [optional]
|
14
|
+
**type** | **String** | Es el tipo de cep a consultar, puede ser SPEI o SPID. | [optional]
|
14
15
|
|
15
16
|
|
data/docs/CertificateRequest.md
CHANGED
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**_alias** | **String** | Es el alias del certificado. | [optional]
|
7
7
|
**certificate_number** | **String** | Es el número de certificado. | [optional]
|
8
|
-
**check_digit** | **String** | Es el dígito verificador.
|
8
|
+
**check_digit** | **String** | Es el dígito verificador. Máximo 3 dígitos. | [optional]
|
9
9
|
**cipher_data** | **String** | Es la información de cifrado. | [optional]
|
10
10
|
|
11
11
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
11
11
|
**due_date** | **DateTime** | Es la fecha de operación del pago CODI®. Ésta fecha viene en formato ISO 8601 con zona horaria, ejemplo: <strong>2020-10-27T11:03:15.000-06:00</strong>. | [optional]
|
12
12
|
**order_id** | **String** | Es la referencia de la transferencia asignada por el cliente. | [optional]
|
13
13
|
**phone_number** | **String** | Es el Número de teléfono móvil en caso de ser un pago CODI® usando \"PUSH_NOTIFICATION\". | [optional]
|
14
|
+
**reference** | **Integer** | Referencia numérica del pago CODI®. | [optional]
|
14
15
|
**status** | **String** | El estado del código QR para pago CODI®. | [optional]
|
15
16
|
**type** | **String** | Es el tipo de código QR para pago con CODI®. | [optional]
|
16
17
|
|
data/docs/CodiCodeRequestDTO.md
CHANGED
@@ -4,11 +4,14 @@
|
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
6
|
**amount** | **Float** | Monto del pago CODI® | [optional]
|
7
|
-
**
|
8
|
-
**
|
7
|
+
**beneficiary2** | [**BeneficiaryDTO**](BeneficiaryDTO.md) | | [optional]
|
8
|
+
**concept** | **String** | Descripción del pago CODI®, no debe contener letras con acentos ni caracteres especiales |
|
9
|
+
**due_date** | **DateTime** | Fecha de operación pago CODI®, formato: yyyy-MM-dd'T'HH:mm:ss | [optional]
|
9
10
|
**metadata** | **String** | Campo de metada CODI®, longitud máxima determinada por configuracion de la empresa, por defecto 100 caracteres | [optional]
|
10
11
|
**order_id** | **String** | Referencia de la transferencia asignada por el cliente |
|
12
|
+
**payment_type** | **String** | El tipo de pago ya sea en una ocasión (ONE_OCCASION) o recurrente (RECURRENT) |
|
11
13
|
**phone_number** | **String** | Número de teléfono móvil en caso de ser un pago CODI® usando 'PUSH_NOTIFICATION' estecampo sería obligatorio | [optional]
|
12
|
-
**
|
14
|
+
**reference** | **Integer** | Referencia numérica del pago CODI®. Debe ser de 7 dígitos |
|
15
|
+
**type** | **String** | El tipo de solicitud QR o PUSH para pago con CODI® |
|
13
16
|
|
14
17
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Wire4Client::ConfirmRecurringCharge
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**order_id** | **String** | Identificador de la orden enviada por parte del cliente | [optional]
|
7
|
+
**url** | **String** | Url del portal en donde se debe capturar los datos de la tarjeta para aplicar el cargo | [optional]
|
8
|
+
|
9
|
+
|
@@ -246,7 +246,9 @@ opts = {
|
|
246
246
|
beneficiary_name: 'beneficiary_name_example', # String | Es el nombre del beneficiario.
|
247
247
|
end_date: 'end_date_example', # String | Es la fecha de inicio del perido a filtrar en formato dd-mm-yyyy.
|
248
248
|
init_date: 'init_date_example', # String | Es la fºecha de inicio del perido a filtrar en formato dd-mm-yyyy.
|
249
|
+
page: '0', # String | Es el número de página.
|
249
250
|
rfc: 'rfc_example', # String | Es el Registro Federal de Controbuyentes (RFC) del beneficiario.
|
251
|
+
size: '20', # String | Es el tamaño de página.
|
250
252
|
status: 'status_example' # String | Es el estado (estatus) de la cuenta. Los valores pueden ser <b>PENDING</b> y <b>REGISTERED</b>.
|
251
253
|
}
|
252
254
|
|
@@ -270,7 +272,9 @@ Name | Type | Description | Notes
|
|
270
272
|
**beneficiary_name** | **String**| Es el nombre del beneficiario. | [optional]
|
271
273
|
**end_date** | **String**| Es la fecha de inicio del perido a filtrar en formato dd-mm-yyyy. | [optional]
|
272
274
|
**init_date** | **String**| Es la fºecha de inicio del perido a filtrar en formato dd-mm-yyyy. | [optional]
|
275
|
+
**page** | **String**| Es el número de página. | [optional] [default to 0]
|
273
276
|
**rfc** | **String**| Es el Registro Federal de Controbuyentes (RFC) del beneficiario. | [optional]
|
277
|
+
**size** | **String**| Es el tamaño de página. | [optional] [default to 20]
|
274
278
|
**status** | **String**| Es el estado (estatus) de la cuenta. Los valores pueden ser <b>PENDING</b> y <b>REGISTERED</b>. | [optional]
|
275
279
|
|
276
280
|
### Return type
|
@@ -32,7 +32,9 @@ opts = {
|
|
32
32
|
beneficiary_name: 'beneficiary_name_example', # String | Es el nombre del beneficiario.
|
33
33
|
end_date: 'end_date_example', # String | Es la fecha de inicio del periodo a filtrar en formato dd-mm-yyyy.
|
34
34
|
init_date: 'init_date_example', # String | Es la fecha de inicio del periodo a filtrar en formato dd-mm-yyyy.
|
35
|
+
page: '0', # String | Es el número de página.
|
35
36
|
rfc: 'rfc_example', # String | Es el Registro Federal de Contribuyentes (RFC) del beneficiario.
|
37
|
+
size: '20', # String | Es el tamaño de página.
|
36
38
|
status: 'status_example' # String | Es el estado (estatus) de la cuenta, Los valores pueden ser <b>PENDING</b> y <b>REGISTERED</b>.
|
37
39
|
}
|
38
40
|
|
@@ -56,7 +58,9 @@ Name | Type | Description | Notes
|
|
56
58
|
**beneficiary_name** | **String**| Es el nombre del beneficiario. | [optional]
|
57
59
|
**end_date** | **String**| Es la fecha de inicio del periodo a filtrar en formato dd-mm-yyyy. | [optional]
|
58
60
|
**init_date** | **String**| Es la fecha de inicio del periodo a filtrar en formato dd-mm-yyyy. | [optional]
|
61
|
+
**page** | **String**| Es el número de página. | [optional] [default to 0]
|
59
62
|
**rfc** | **String**| Es el Registro Federal de Contribuyentes (RFC) del beneficiario. | [optional]
|
63
|
+
**size** | **String**| Es el tamaño de página. | [optional] [default to 20]
|
60
64
|
**status** | **String**| Es el estado (estatus) de la cuenta, Los valores pueden ser <b>PENDING</b> y <b>REGISTERED</b>. | [optional]
|
61
65
|
|
62
66
|
### Return type
|
data/docs/Customer.md
ADDED
data/docs/Deposit.md
CHANGED
@@ -25,5 +25,6 @@ Name | Type | Description | Notes
|
|
25
25
|
**sender_bank** | [**MessageInstitution**](MessageInstitution.md) | Es el banco del ordenante. | [optional]
|
26
26
|
**sender_name** | **String** | Es el nombre del ordenante. | [optional]
|
27
27
|
**sender_rfc** | **String** | Es el Registro Federal de Contribuyentes (RFC) de la cuenta ordenante. | [optional]
|
28
|
+
**status** | **String** | Es el estatus del depósito (COMPLETED/RETURNED). | [optional]
|
28
29
|
|
29
30
|
|
data/docs/Depositant.md
CHANGED
@@ -8,5 +8,6 @@ Name | Type | Description | Notes
|
|
8
8
|
**depositant_clabe** | **String** | Es la cuenta CLABE (es de 18 dígitos) del depositante. | [optional]
|
9
9
|
**email** | **Array<String>** | Es la lista de correos electrónicos (emails) del depositante. | [optional]
|
10
10
|
**name** | **String** | Es el nombre del depositante. | [optional]
|
11
|
+
**status** | **String** | Es el estatus del depositante. | [optional]
|
11
12
|
|
12
13
|
|
data/docs/DepositantesApi.md
CHANGED
@@ -4,8 +4,61 @@ All URIs are relative to *https://sandbox-api.wire4.mx/wire4/1.0.0*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
+
[**get_depositants_totals_using_get**](DepositantesApi.md#get_depositants_totals_using_get) | **GET** /subscriptions/{subscription}/depositants/count | Número de depositantes por suscripción
|
7
8
|
[**get_depositants_using_get**](DepositantesApi.md#get_depositants_using_get) | **GET** /subscriptions/{subscription}/depositants | Consulta de cuentas de depositantes
|
8
9
|
[**register_depositants_using_post**](DepositantesApi.md#register_depositants_using_post) | **POST** /subscriptions/{subscription}/depositants | Registra un nuevo depositante
|
10
|
+
[**update_status_depositants_no_suscrption_using_patch**](DepositantesApi.md#update_status_depositants_no_suscrption_using_patch) | **PATCH** /depositants/{account}/{action} | Solicitud para actualizar el estado de un depositante sin utilizar la suscripción
|
11
|
+
[**update_status_depositants_using_patch**](DepositantesApi.md#update_status_depositants_using_patch) | **PATCH** /subscriptions/{subscription}/depositants/{account}/{action} | Solicitud para actualizar el estado de un depossitante
|
12
|
+
|
13
|
+
|
14
|
+
# **get_depositants_totals_using_get**
|
15
|
+
> DepositantCountResponse get_depositants_totals_using_get(authorization, subscription)
|
16
|
+
|
17
|
+
Número de depositantes por suscripción
|
18
|
+
|
19
|
+
Obtiene la cantidad el total de depositantes asociados al contrato relacionado a la suscripción.
|
20
|
+
|
21
|
+
### Example
|
22
|
+
```ruby
|
23
|
+
# load the gem
|
24
|
+
require 'wire4_client'
|
25
|
+
|
26
|
+
api_instance = Wire4Client::DepositantesApi.new
|
27
|
+
|
28
|
+
authorization = 'authorization_example' # String | Header para token
|
29
|
+
|
30
|
+
subscription = 'subscription_example' # String | Es el identificador de la suscripción a esta API.
|
31
|
+
|
32
|
+
|
33
|
+
begin
|
34
|
+
#Número de depositantes por suscripción
|
35
|
+
result = api_instance.get_depositants_totals_using_get(authorization, subscription)
|
36
|
+
p result
|
37
|
+
rescue Wire4Client::ApiError => e
|
38
|
+
puts "Exception when calling DepositantesApi->get_depositants_totals_using_get: #{e}"
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
### Parameters
|
43
|
+
|
44
|
+
Name | Type | Description | Notes
|
45
|
+
------------- | ------------- | ------------- | -------------
|
46
|
+
**authorization** | **String**| Header para token |
|
47
|
+
**subscription** | **String**| Es el identificador de la suscripción a esta API. |
|
48
|
+
|
49
|
+
### Return type
|
50
|
+
|
51
|
+
[**DepositantCountResponse**](DepositantCountResponse.md)
|
52
|
+
|
53
|
+
### Authorization
|
54
|
+
|
55
|
+
No authorization required
|
56
|
+
|
57
|
+
### HTTP request headers
|
58
|
+
|
59
|
+
- **Content-Type**: Not defined
|
60
|
+
- **Accept**: application/json
|
61
|
+
|
9
62
|
|
10
63
|
|
11
64
|
# **get_depositants_using_get**
|
@@ -63,7 +116,7 @@ No authorization required
|
|
63
116
|
|
64
117
|
Registra un nuevo depositante
|
65
118
|
|
66
|
-
Registra un nuevo depositante en el contrato asociado a la suscripción.
|
119
|
+
Registra un nuevo depositante en el contrato asociado a la suscripción. Si intenta registrar un depositante que previamente se había registrado, se devolverá la cuenta clabe asociada al Álias que está intentando registrar. Queda bajo responsabilidad del cliente verificar que los álias sean únicos en sus sistemas.
|
67
120
|
|
68
121
|
### Example
|
69
122
|
```ruby
|
@@ -111,3 +164,113 @@ No authorization required
|
|
111
164
|
|
112
165
|
|
113
166
|
|
167
|
+
# **update_status_depositants_no_suscrption_using_patch**
|
168
|
+
> Depositant update_status_depositants_no_suscrption_using_patch(authorization, account, action, opts)
|
169
|
+
|
170
|
+
Solicitud para actualizar el estado de un depositante sin utilizar la suscripción
|
171
|
+
|
172
|
+
### Example
|
173
|
+
```ruby
|
174
|
+
# load the gem
|
175
|
+
require 'wire4_client'
|
176
|
+
|
177
|
+
api_instance = Wire4Client::DepositantesApi.new
|
178
|
+
|
179
|
+
authorization = 'authorization_example' # String | Header para token
|
180
|
+
|
181
|
+
account = 'account_example' # String | Es la cuenta que va a ser actualizada.
|
182
|
+
|
183
|
+
action = 'action_example' # String | Es la cuenta que va a ser actualizada.
|
184
|
+
|
185
|
+
opts = {
|
186
|
+
empty_value: 'empty_value_example' # String | Empty value
|
187
|
+
}
|
188
|
+
|
189
|
+
begin
|
190
|
+
#Solicitud para actualizar el estado de un depositante sin utilizar la suscripción
|
191
|
+
result = api_instance.update_status_depositants_no_suscrption_using_patch(authorization, account, action, opts)
|
192
|
+
p result
|
193
|
+
rescue Wire4Client::ApiError => e
|
194
|
+
puts "Exception when calling DepositantesApi->update_status_depositants_no_suscrption_using_patch: #{e}"
|
195
|
+
end
|
196
|
+
```
|
197
|
+
|
198
|
+
### Parameters
|
199
|
+
|
200
|
+
Name | Type | Description | Notes
|
201
|
+
------------- | ------------- | ------------- | -------------
|
202
|
+
**authorization** | **String**| Header para token |
|
203
|
+
**account** | **String**| Es la cuenta que va a ser actualizada. |
|
204
|
+
**action** | **String**| Es la cuenta que va a ser actualizada. |
|
205
|
+
**empty_value** | **String**| Empty value | [optional]
|
206
|
+
|
207
|
+
### Return type
|
208
|
+
|
209
|
+
[**Depositant**](Depositant.md)
|
210
|
+
|
211
|
+
### Authorization
|
212
|
+
|
213
|
+
No authorization required
|
214
|
+
|
215
|
+
### HTTP request headers
|
216
|
+
|
217
|
+
- **Content-Type**: application/json
|
218
|
+
- **Accept**: application/json
|
219
|
+
|
220
|
+
|
221
|
+
|
222
|
+
# **update_status_depositants_using_patch**
|
223
|
+
> Depositant update_status_depositants_using_patch(authorization, account, action, opts)
|
224
|
+
|
225
|
+
Solicitud para actualizar el estado de un depossitante
|
226
|
+
|
227
|
+
### Example
|
228
|
+
```ruby
|
229
|
+
# load the gem
|
230
|
+
require 'wire4_client'
|
231
|
+
|
232
|
+
api_instance = Wire4Client::DepositantesApi.new
|
233
|
+
|
234
|
+
authorization = 'authorization_example' # String | Header para token
|
235
|
+
|
236
|
+
account = 'account_example' # String | Es la cuenta que va a ser actualizada.
|
237
|
+
|
238
|
+
action = 'action_example' # String | Es la cuenta que va a ser actualizada.
|
239
|
+
|
240
|
+
opts = {
|
241
|
+
empty_value: 'empty_value_example' # String | Empty value
|
242
|
+
}
|
243
|
+
|
244
|
+
begin
|
245
|
+
#Solicitud para actualizar el estado de un depossitante
|
246
|
+
result = api_instance.update_status_depositants_using_patch(authorization, account, action, opts)
|
247
|
+
p result
|
248
|
+
rescue Wire4Client::ApiError => e
|
249
|
+
puts "Exception when calling DepositantesApi->update_status_depositants_using_patch: #{e}"
|
250
|
+
end
|
251
|
+
```
|
252
|
+
|
253
|
+
### Parameters
|
254
|
+
|
255
|
+
Name | Type | Description | Notes
|
256
|
+
------------- | ------------- | ------------- | -------------
|
257
|
+
**authorization** | **String**| Header para token |
|
258
|
+
**account** | **String**| Es la cuenta que va a ser actualizada. |
|
259
|
+
**action** | **String**| Es la cuenta que va a ser actualizada. |
|
260
|
+
**empty_value** | **String**| Empty value | [optional]
|
261
|
+
|
262
|
+
### Return type
|
263
|
+
|
264
|
+
[**Depositant**](Depositant.md)
|
265
|
+
|
266
|
+
### Authorization
|
267
|
+
|
268
|
+
No authorization required
|
269
|
+
|
270
|
+
### HTTP request headers
|
271
|
+
|
272
|
+
- **Content-Type**: application/json
|
273
|
+
- **Accept**: */*
|
274
|
+
|
275
|
+
|
276
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Wire4Client::FailedChargesDataDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**brand** | **String** | | [optional]
|
7
|
+
**card_number** | **String** | | [optional]
|
8
|
+
**date** | **String** | | [optional]
|
9
|
+
**error_code** | **String** | | [optional]
|
10
|
+
**error_message** | **String** | | [optional]
|
11
|
+
**holder_name** | **String** | | [optional]
|
12
|
+
|
13
|
+
|
@@ -20,7 +20,10 @@ Name | Type | Description | Notes
|
|
20
20
|
**description** | **String** | Es el concepto de la transferencia. | [optional]
|
21
21
|
**monex_description** | **String** | Es la descripción de Monex para la transferencia. | [optional]
|
22
22
|
**monex_transaction_id** | **String** | Es el identificador asignado por Monex a la transferencia. | [optional]
|
23
|
+
**order_id** | **String** | Número de orden asignado por el cliente de Wire4 | [optional]
|
23
24
|
**reference** | **String** | Es la referecia de la transferencia. | [optional]
|
25
|
+
**request_id** | **String** | Es el identificador de la solicitud de cobro establecido por la aplicación. | [optional]
|
26
|
+
**return_id_instruction** | **Integer** | Es el id de devolucion de la transaccion. | [optional]
|
24
27
|
**sender_account** | **String** | Es la cuenta del ordenante que podría ser un número celular (10 dígitos), una tarjeta de débito (TDD, de 16 dígitos) o Cuenta CLABE interbancaria (18 dígitos). | [optional]
|
25
28
|
**sender_bank** | [**MessageInstitution**](MessageInstitution.md) | Es el objeto con información del banco del ordenante. | [optional]
|
26
29
|
**sender_name** | **String** | Es el nombre del ordenante. | [optional]
|