# Retrieve a development by ID Fetch detailed information about a specific development within the Property Management System (PMS) using its unique ID. The response includes key details such as the development's name, associated buildings, location, status, and other relevant metadata. This endpoint is useful for retrieving structured property development data, supporting asset management, and integrating with booking and operational workflows. If the specified development ID does not exist, a error will be returned. In case of an unexpected system error, a will be triggered. Endpoint: GET /api/v3/developments/{id} Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) Development ID ## Response 200 fields (application/json): - `id` (integer) Unique identifier for the development Example: 123456 - `area` (object, required) Area where the development is located - `area.id` (integer, required) Area ID - `area.name` (string, required) Area name - `name` (string, required) Name of the development Example: "The Residences at XYZ" - `description` (string, required) Description of the development Example: "A luxury residential development with 100 units" - `primaryImageUrl` (string) Primary image URL for the development Example: "https://example.com/images/development.jpg"