Properties API

Manage hotel properties and metadata.

List properties

GET /properties

Create property

POST /properties
{
  "name": "Harbour View Hotel",
  "code": "HVH-LON",
  "timezone": "Europe/London",
  "currency": "GBP",
  "status": "active"
}

Response shape

{
  "id": "prop_01H...",
  "name": "Harbour View Hotel",
  "code": "HVH-LON",
  "timezone": "Europe/London",
  "currency": "GBP",
  "status": "active"
}