This api is used to get places list. Get places list by sending a POST request with optional filters to the endpoint below.
Response:
{
"success": true,
"data": {
"places": {
"current_page": 1,
"data": [
{
"place_id": "PL000000",
"title": "dummy",
"site_id": "ST000000",
"description": "dummy",
"place_type": "Meeting Room",
"address": "dummy",
"city": "England",
"postcode": "123456",
"country": "United Kingdom",
"latitude": "51.58096",
"longitude": "-0.33446",
"timezone": "Europe/London",
"area": null,
"min_people_count": null,
"max_people_count": null,
"booking_method": "automatic",
"available_for_booking": "yes",
"available_from_date": "2025-07-15",
"facilities": [
[
"slug" => "wifi",
"name" => "Broadband / wifi"
],
[
"slug" => "coffee-machine",
"name" => "Coffee machine"
],
[
"slug" => "projector",
"name" => "Projector / Display screen"
]
],
"images": [
"https://example.com/images/front.jpg"
],
"availabilities": [
{
"day": "monday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "tuesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "wednesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "thursday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "friday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "saturday",
"time_in": "",
"time_out": ""
},
{
"day": "sunday",
"time_in": "",
"time_out": ""
}
],
"charges": [
{
"type": "hours",
"amount": "50.00",
"discount": "0.00"
},
{
"type": "full day",
"amount": "400.00",
"discount": "0.00"
},
{
"type": "half day",
"amount": "200.00",
"discount": "0.00"
}
]
},
{
"place_id": "PL000001",
"site_id": "ST000000",
"title": "dummy",
"description": "dummy",
"place_type": "Meeting Room",
"address": "dummy",
"city": "dummy",
"postcode": "123456",
"country": "United Kingdom",
"latitude": "51.58096",
"longitude": "-0.33373",
"timezone": "Europe/London",
"area": null,
"min_people_count": null,
"max_people_count": 6,
"booking_method": "automatic",
"available_for_booking": "yes",
"available_from_date": "2025-07-15",
"facilities": [
"Broadband / wifi",
"Centralized air conditioning",
"Projector / Display screen",
"Sound rcording system",
"Whiteboard / writing board"
],
"images": [
"https://example.com/images/front.jpg"
],
"availabilities": [
{
"day": "monday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "tuesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "wednesday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "thursday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "friday",
"time_in": "09:00:00",
"time_out": "18:00:00"
},
{
"day": "saturday",
"time_in": "",
"time_out": ""
},
{
"day": "sunday",
"time_in": "",
"time_out": ""
}
],
"charges": [
{
"type": "hours",
"amount": "35.20",
"discount": "0.00"
},
{
"type": "full day",
"amount": "200.00",
"discount": "0.00"
},
{
"type": "half day",
"amount": "110.00",
"discount": "0.00"
}
]
},
],
"first_page_url": "https://staging-api.meetingroomz.com/manager/v1/places?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://staging-api.meetingroomz.com/manager/v1/places?page=1",
"links": [
{
"url": null,
"label": "pagination.previous",
"active": false
},
{
"url": "https://staging-api.meetingroomz.com/manager/v1/places?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "pagination.next",
"active": false
}
],
"next_page_url": null,
"path": "https://staging-api.meetingroomz.com/manager/v1/places",
"per_page": 10,
"prev_page_url": null,
"to": 2,
"total": 2
},
"places_count": 2
},
"message": "Places fetched successfully"
}