GET api/Prestamoes/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
Prestamo| Name | Description | Type | Additional information |
|---|---|---|---|
| Cheque | string |
String length: inclusive between 0 and 50 |
|
| F_solicitud | string |
String length: inclusive between 0 and 30 |
|
| Solicitado | decimal number |
None. |
|
| F_aprobado | string |
String length: inclusive between 0 and 30 |
|
| Aprobado | decimal number |
None. |
|
| Girar | decimal number |
None. |
|
| T_interes | decimal number |
None. |
|
| N__Cuotas | integer |
None. |
|
| Tipo | string |
String length: inclusive between 0 and 50 |
|
| Prioridad | string |
String length: inclusive between 0 and 50 |
|
| Garante | string |
String length: inclusive between 0 and 50 |
|
| id_prestamo | integer |
None. |
|
| id_persona | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Cheque": "sample string 1",
"F_solicitud": "sample string 2",
"Solicitado": 3.0,
"F_aprobado": "sample string 4",
"Aprobado": 5.0,
"Girar": 1.0,
"T_interes": 6.1,
"N__Cuotas": 7,
"Tipo": "sample string 8",
"Prioridad": "sample string 9",
"Garante": "sample string 10",
"id_prestamo": 11,
"id_persona": 12
}
application/xml, text/xml
Sample:
<Prestamo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiSecedo.Models"> <Aprobado>5</Aprobado> <Cheque>sample string 1</Cheque> <F_aprobado>sample string 4</F_aprobado> <F_solicitud>sample string 2</F_solicitud> <Garante>sample string 10</Garante> <Girar>1</Girar> <N__Cuotas>7</N__Cuotas> <Prioridad>sample string 9</Prioridad> <Solicitado>3</Solicitado> <T_interes>6.1</T_interes> <Tipo>sample string 8</Tipo> <id_persona>12</id_persona> <id_prestamo>11</id_prestamo> </Prestamo>