POST api/ValorCuotaOperatorias?Capital={Capital}&plan={plan}&Operatoria={Operatoria}&Empresa={Empresa}
Valor de la cuota para el Plan de cuotas informado.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Capital | decimal number |
Required |
|
plan | string |
Required |
|
Operatoria | string |
Default value is PADE |
|
Empresa | integer |
Default value is 99999 |
Body Parameters
None.
Response Information
Resource Description
Collection of ValorCuotasOperatoriasName | Description | Type | Additional information |
---|---|---|---|
RelacionPlanComercio |
CorrelativoRelacion, identifica unívocamente el Plan-Comersio |
integer |
None. |
FactorCalculo |
Factor de Calculo, genera interes de la cuota |
decimal number |
None. |
ImporteCuota |
Importe Cuota, capital + interes |
decimal number |
None. |
TotalCredito |
Total Credito, Importe Cuota X Cantidad cuotas |
decimal number |
None. |
Operatoria |
Operatoria : PADE |
string |
None. |
Empresa |
Comercio : 99999 |
integer |
None. |
CantidadCuotas |
Cantidad Cuotas Plan |
integer |
None. |
CPlan |
Plan |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RelacionPlanComercio": 1, "FactorCalculo": 2.1, "ImporteCuota": 3.1, "TotalCredito": 4.1, "Operatoria": "sample string 5", "Empresa": 6, "CantidadCuotas": 7, "CPlan": "sample string 8" }, { "RelacionPlanComercio": 1, "FactorCalculo": 2.1, "ImporteCuota": 3.1, "TotalCredito": 4.1, "Operatoria": "sample string 5", "Empresa": 6, "CantidadCuotas": 7, "CPlan": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfValorCuotasOperatorias xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiciosWeb.WebApi.Models"> <ValorCuotasOperatorias> <CPlan>sample string 8</CPlan> <CantidadCuotas>7</CantidadCuotas> <Empresa>6</Empresa> <Operatoria>sample string 5</Operatoria> <FactorCalculo>2.1</FactorCalculo> <ImporteCuota>3.1</ImporteCuota> <RelacionPlanComercio>1</RelacionPlanComercio> <TotalCredito>4.1</TotalCredito> </ValorCuotasOperatorias> <ValorCuotasOperatorias> <CPlan>sample string 8</CPlan> <CantidadCuotas>7</CantidadCuotas> <Empresa>6</Empresa> <Operatoria>sample string 5</Operatoria> <FactorCalculo>2.1</FactorCalculo> <ImporteCuota>3.1</ImporteCuota> <RelacionPlanComercio>1</RelacionPlanComercio> <TotalCredito>4.1</TotalCredito> </ValorCuotasOperatorias> </ArrayOfValorCuotasOperatorias>