Mlandlords



Base URL

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

Endpoints

1. Get MLandlords

Endpoint:
GET https://api.rentila.com/landlord/mlandlords
Description: Retrieves a list of MLandlords associated with the authenticated landlord.
Query Parameters:
Parameter
Type
Required
Description
sort_by
string
No
Field to sort by
sort_order
string
No
Sorting order (ASC or DESC, default is DESC)
page
int
No
Page number
show_per_page
int
No
Number of results per page
Response:
{
"code": 200,
"status": "success",
"data": {
"mlandlords": [
{
"MLandlordID": "12345",
"MLandlordName": "John Doe",
"MLandlordPortable": "123456789"
}
],
"pagination": {
"total": 100,
"current_page": 1,
"per_page": 10,
"total_pages": 10
}
},
"message": "OK"
}