Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.73 KB | None | 0 0
  1. Endpoint: GET /summary?date=<date>
  2. If no date included then will default to today's date
  3.  
  4. Response Format:
  5. {
  6.    "occupied": 100, // Rooms Occupied
  7.    "complimentary": 1, // Of which complementary
  8.    "houseUse": 1, // Of which used by the house
  9.    "occupancyPercentage": 0.45, // Occupancy Percentage of the house
  10.    "roomRevenue": 12000000, // Room Revenue generated on the day
  11.    "averageRatePrice": 12000, // Average Room Rate
  12.    "arrivingRooms": 12, // Number of check-ins today
  13.    "departingRooms": 88, // Number of check-outs today
  14.    "guestCount": 1000, // Total guests in house
  15.    "totalRooms": 10,
  16.    "oooRooms": 3,
  17.    "revenueBreakdown": [
  18.        { "category": "accomodation", "amount": 10000 },
  19.    ],
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement