Active Houses in a Park

1 min. readlast update: 11.28.2024

The Park Active Houses endpoint fetches a list of active houses available in a specified park. The list is based on a specific partner and includes details of each active house, such as its unique identifier and name.

URL:
/bungalow/api/v1/booking/parkActiveHouses

Method:
GET

The response returns a JSON object where each key-value pair represents an active house in the park. The key is the unique house identifier, and the value is the name of the house model.

Response Example:

[
  {
    "id": 12345,
    "name": "Light Villa"
  },
  {
    "id": 12346,
    "name": "Sun Villa"
  },
  {
    "id": 12347,
    "name": "Moon Villa"
  },
  {
    "id": 12348,
    "name": "Star Villa"
  }
]
Was this article helpful?