GET api/Credito/CargarPrestamosPorAprobar/{idSucursal}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idSucursal | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of clsViewCredito| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCredito | integer |
None. |
|
| IdCliente | integer |
None. |
|
| NumeroCredito | integer |
None. |
|
| NombreCompleto | string |
None. |
|
| Cedula | string |
None. |
|
| FechaDesembolso | date |
None. |
|
| MontoAprobado | decimal number |
None. |
|
| MontoTotalDeuda | decimal number |
None. |
|
| MontoCuota | decimal number |
None. |
|
| Estado | integer |
None. |
|
| Interes | decimal number |
None. |
|
| Plazo | decimal number |
None. |
|
| SaldoVencido | decimal number |
None. |
|
| SaldoPendiente | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"IdCredito": 1,
"IdCliente": 2,
"NumeroCredito": 3,
"NombreCompleto": "sample string 4",
"Cedula": "sample string 5",
"FechaDesembolso": "2026-03-25T14:05:36.6745237-05:00",
"MontoAprobado": 7.0,
"MontoTotalDeuda": 8.0,
"MontoCuota": 1.0,
"Estado": 9,
"Interes": 10.0,
"Plazo": 11.0,
"SaldoVencido": 12.0,
"SaldoPendiente": 13.0
},
{
"IdCredito": 1,
"IdCliente": 2,
"NumeroCredito": 3,
"NombreCompleto": "sample string 4",
"Cedula": "sample string 5",
"FechaDesembolso": "2026-03-25T14:05:36.6745237-05:00",
"MontoAprobado": 7.0,
"MontoTotalDeuda": 8.0,
"MontoCuota": 1.0,
"Estado": 9,
"Interes": 10.0,
"Plazo": 11.0,
"SaldoVencido": 12.0,
"SaldoPendiente": 13.0
}
]
application/xml, text/xml
Sample:
<ArrayOfclsViewCredito xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiCrediSoft.Models">
<clsViewCredito>
<Cedula>sample string 5</Cedula>
<Estado>9</Estado>
<FechaDesembolso>2026-03-25T14:05:36.6745237-05:00</FechaDesembolso>
<IdCliente>2</IdCliente>
<IdCredito>1</IdCredito>
<Interes>10</Interes>
<MontoAprobado>7</MontoAprobado>
<MontoCuota>1</MontoCuota>
<MontoTotalDeuda>8</MontoTotalDeuda>
<NombreCompleto>sample string 4</NombreCompleto>
<NumeroCredito>3</NumeroCredito>
<Plazo>11</Plazo>
<SaldoPendiente>13</SaldoPendiente>
<SaldoVencido>12</SaldoVencido>
</clsViewCredito>
<clsViewCredito>
<Cedula>sample string 5</Cedula>
<Estado>9</Estado>
<FechaDesembolso>2026-03-25T14:05:36.6745237-05:00</FechaDesembolso>
<IdCliente>2</IdCliente>
<IdCredito>1</IdCredito>
<Interes>10</Interes>
<MontoAprobado>7</MontoAprobado>
<MontoCuota>1</MontoCuota>
<MontoTotalDeuda>8</MontoTotalDeuda>
<NombreCompleto>sample string 4</NombreCompleto>
<NumeroCredito>3</NumeroCredito>
<Plazo>11</Plazo>
<SaldoPendiente>13</SaldoPendiente>
<SaldoVencido>12</SaldoVencido>
</clsViewCredito>
</ArrayOfclsViewCredito>