DELETE api/Garantes/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
Garantes| Name | Description | Type | Additional information |
|---|---|---|---|
| id_garante | integer |
None. |
|
| cantidad_aprobada | decimal number |
None. |
|
| id_afiliacion | integer |
None. |
|
| id_persona | integer |
None. |
|
| codigo | string |
String length: inclusive between 0 and 10 |
|
| nombre_persona | string |
String length: inclusive between 0 and 50 |
|
| apellido_paterno | string |
String length: inclusive between 0 and 50 |
|
| apellido_materno | string |
String length: inclusive between 0 and 50 |
|
| id_prestamo | integer |
None. |
|
| Activo | string |
String length: inclusive between 0 and 35 |
|
| numero_cheke | string |
String length: inclusive between 0 and 50 |
|
| fecha_aprobada | date |
None. |
|
| cantidad_agirar | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"id_garante": 1,
"cantidad_aprobada": 1.0,
"id_afiliacion": 2,
"id_persona": 3,
"codigo": "sample string 4",
"nombre_persona": "sample string 5",
"apellido_paterno": "sample string 6",
"apellido_materno": "sample string 7",
"id_prestamo": 8,
"Activo": "sample string 9",
"numero_cheke": "sample string 10",
"fecha_aprobada": "2025-12-06T05:01:07.285406+00:00",
"cantidad_agirar": 1.0
}
application/xml, text/xml
Sample:
<Garantes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiSecedo.Models"> <Activo>sample string 9</Activo> <apellido_materno>sample string 7</apellido_materno> <apellido_paterno>sample string 6</apellido_paterno> <cantidad_agirar>1</cantidad_agirar> <cantidad_aprobada>1</cantidad_aprobada> <codigo>sample string 4</codigo> <fecha_aprobada>2025-12-06T05:01:07.285406+00:00</fecha_aprobada> <id_afiliacion>2</id_afiliacion> <id_garante>1</id_garante> <id_persona>3</id_persona> <id_prestamo>8</id_prestamo> <nombre_persona>sample string 5</nombre_persona> <numero_cheke>sample string 10</numero_cheke> </Garantes>