GET api/Alquiler/GetAlquilerDetails?AlquierId={AlquierId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AlquierId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DetalleData| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | date |
None. |
|
| Amount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Date": "2025-10-28T08:41:44.4082561-07:00",
"Amount": 2.1
},
{
"Date": "2025-10-28T08:41:44.4082561-07:00",
"Amount": 2.1
}
]
application/xml, text/xml
Sample:
<ArrayOfDetalleData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entidades">
<DetalleData>
<Amount>2.1</Amount>
<Date>2025-10-28T08:41:44.4082561-07:00</Date>
</DetalleData>
<DetalleData>
<Amount>2.1</Amount>
<Date>2025-10-28T08:41:44.4082561-07:00</Date>
</DetalleData>
</ArrayOfDetalleData>
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.