GET api/Lotes/disponibles?FraccionId={FraccionId}&PageSize={PageSize}&CurrentPage={CurrentPage}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FraccionId | integer |
None. |
|
| PageSize | integer |
None. |
|
| CurrentPage | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of RptItemLoteDisponible| Name | Description | Type | Additional information |
|---|---|---|---|
| Fraccion | string |
None. |
|
| Lote | string |
None. |
|
| Manzana | string |
None. |
|
| MontoCuota | decimal number |
None. |
|
| Estado | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Fraccion": "sample string 1",
"Lote": "sample string 2",
"Manzana": "sample string 3",
"MontoCuota": 4.0,
"Estado": "sample string 5"
},
{
"Fraccion": "sample string 1",
"Lote": "sample string 2",
"Manzana": "sample string 3",
"MontoCuota": 4.0,
"Estado": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfRptItemLoteDisponible xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HouseCore.Models.Reports">
<RptItemLoteDisponible>
<Estado>sample string 5</Estado>
<Fraccion>sample string 1</Fraccion>
<Lote>sample string 2</Lote>
<Manzana>sample string 3</Manzana>
<MontoCuota>4</MontoCuota>
</RptItemLoteDisponible>
<RptItemLoteDisponible>
<Estado>sample string 5</Estado>
<Fraccion>sample string 1</Fraccion>
<Lote>sample string 2</Lote>
<Manzana>sample string 3</Manzana>
<MontoCuota>4</MontoCuota>
</RptItemLoteDisponible>
</ArrayOfRptItemLoteDisponible>