https://api.rentila.com/landlord/handovers
GET https://api.rentila.com/landlord/handovers/filters
Retrieves available filters for landlord handovers, including landlords, buildings, properties, and handover types.
{
"code": 200,
"status": "success",
"data": {
"landlords": {"888279": "Immotop.lu"},
"buildings": {"b61853": "IMEEEUBLLE1"},
"properties": {"11": "22 rue Georges Bizet VENDU"},
"handover_types": {"enter": "Etat des lieux d'entrée", "exit": "Etat des lieux de sortie"}
},
"message": "OK"
}
GET https://api.rentila.com/landlord/handovers
Retrieves a list of handovers with sorting, filtering, and pagination support.
id, edit_data (optional) - Fetches a specific handover by ID.filter[PropertyID] (string, optional): Filter by property ID(s), comma-separated.filter[LandlordID] (string, optional): Filter by landlord ID(s), comma-separated.filter[HandoverType] (string, optional): Filter params exit or enter.sort_by (optional) - Sort field (e.g., Name, HandoverType, PropertyTitle).sort_order (optional) - Sort order (ASC or DESC).page (optional) - Page number for pagination.show_per_page (optional) - Number of results per page.
{
"code": 200,
"status": "success",
"data": {
"handovers": [...],
"records_count_active": 10,
"records_count_archive": 5,
"pagination": {...}
},
"message": "OK"
}