Handovers



Base URL

https://api.rentila.com/landlord/handovers

Endpoints

1. Get Filters

Endpoint:
GET https://api.rentila.com/landlord/handovers/filters
Description: Retrieves available filters for landlord handovers, including landlords, buildings, properties, and handover types.
Response Example:
{
"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"
}


2. Get Handovers

Endpoint:
GET https://api.rentila.com/landlord/handovers
Description: Retrieves a list of handovers with sorting, filtering, and pagination support.
Query Parameters:
  • 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.
Response Example:
{
"code": 200,
"status": "success",
"data": {
"handovers": [...],
"records_count_active": 10,
"records_count_archive": 5,
"pagination": {...}
},
"message": "OK"
}