# Retrieve list of developments Retrieve a paginated list of developments within the Property Management System (PMS). This endpoint supports optional filtering by development name, area ID, or area name, allowing flexible search criteria. Each development represents a property project or a group of buildings and includes key details such as name, location, and associated properties. The response provides a structured list of developments, which is useful for managing large-scale property assets, tracking project status, and integrating with booking and operational workflows. If no filters are applied, all available developments will be returned in a paginated format. Endpoint: GET /api/v3/developments Version: 3.0.4 Security: OAuth2 ## Query parameters: - `developmentName` (string) Filter by development name (case-insensitive, wildcard supported) - `areaId` (integer) Filter by area ID - `areaName` (string) Filter by area name (case-insensitive, wildcard supported) ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier of the development entity Example: 123456 - `content.areaId` (string) - `content.areaName` (string) Area name of the development entity Example: "Grand Cayman" - `content.developmentName` (string) Name of the development entity Example: "The Residences at The Ritz-Carlton, Grand Cayman" - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)