# Retrieve a city by id Fetch detailed information about a specific city within the PMS using its unique identifier. The response includes the city's name, associated properties, and any relevant metadata. This endpoint is commonly used to retrieve location-specific data to support property management and reporting functions. Endpoint: GET /api/v3/cities/{id} Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) Unique identifier of the city to retrieve ## Response 200 fields (application/json): - `id` (integer) City ID Example: 1 - `name` (string) City name Example: "Birmingham" - `region` (object) Region details - `region.id` (integer) Region ID Example: 1 - `region.name` (string) Region name Example: "West Midlands"