Qodex.ai
Qodex.ai
Introduction
Restful-Booker
/booking - CreateBooking (URL)/booking/:id - UpdateBooking (URL)/booking/:id - PartialUpdateBooking (URL)/ping - HealthCheck/auth - CreateToken/booking/:id - DeleteBooking/booking/:id - GetBooking/booking - GetBookingIds (Query all IDs)/booking - GetBookingIds (Filter by date)/booking - GetBookingIds (Filter by name)
Restful-Booker-Platform
Auth
/auth/login - CreateToken/auth/actuator/health - HealthCheck/auth/logout - DestroyToken/auth/validate - ValidateToken
Booking
/booking/:id - UpdateBooking/booking/summary - GetBookingSummary/booking/:id - DeleteBooking/booking/ - CreateBooking/booking/ - GetBookings/booking/:id - GetBooking/booking/actuator/health - HealthCheck
Branding
/branding/ - UpdateBranding/branding/ - GetBranding/branding/actuator/health - HealthCheck
Message
/message/1/read - MarkAsRead/message/:id - GetMessage/message/:id - DeleteMessage/message/actuator/health - HealthCheck/message/count - UnreadCount/message/ - CreateMessage/message/ - GetMessages
Room
/room/:id - DeleteRoom/room/ - CreateRoom/room/:id - GetRoom/room/actuator/health - HealthCheck/room/ - GetRooms/room/:id - UpdateRoom
Report
/report/ - GetRoomsReport/report/actuator/health - HealthCheck/report/room/:id - GetSpecificRoomReport
Introduction
Restful-Booker
/booking - CreateBooking (URL)/booking/:id - UpdateBooking (URL)/booking/:id - PartialUpdateBooking (URL)/ping - HealthCheck/auth - CreateToken/booking/:id - DeleteBooking/booking/:id - GetBooking/booking - GetBookingIds (Query all IDs)/booking - GetBookingIds (Filter by date)/booking - GetBookingIds (Filter by name)
Restful-Booker-Platform
Auth
/auth/login - CreateToken/auth/actuator/health - HealthCheck/auth/logout - DestroyToken/auth/validate - ValidateToken
Booking
/booking/:id - UpdateBooking/booking/summary - GetBookingSummary/booking/:id - DeleteBooking/booking/ - CreateBooking/booking/ - GetBookings/booking/:id - GetBooking/booking/actuator/health - HealthCheck
Branding
/branding/ - UpdateBranding/branding/ - GetBranding/branding/actuator/health - HealthCheck
Message
/message/1/read - MarkAsRead/message/:id - GetMessage/message/:id - DeleteMessage/message/actuator/health - HealthCheck/message/count - UnreadCount/message/ - CreateMessage/message/ - GetMessages
Room
/room/:id - DeleteRoom/room/ - CreateRoom/room/:id - GetRoom/room/actuator/health - HealthCheck/room/ - GetRooms/room/:id - UpdateRoom
Report
/report/ - GetRoomsReport/report/actuator/health - HealthCheck/report/room/:id - GetSpecificRoomReport
HomeRestful-Booker-PlatformBooking

Booking

Number of APIs: 7

  1. /booking/actuator/health - HealthCheck GET {{host}}/booking/actuator/health

  2. /booking/:id - GetBooking GET {{host}}/booking/1

  3. /booking/ - GetBookings GET {{host}}/booking/?roomid=1

  4. /booking/summary - GetBookingSummary GET {{host}}/booking/summary?roomid=1

  5. /booking/ - CreateBooking POST {{host}}/booking/

  6. /booking/:id - UpdateBooking PUT {{host}}/booking/1

  7. /booking/:id - DeleteBooking DELETE {{host}}/booking/1

Previous
/auth/validate - ValidateToken
Next
/booking/:id - UpdateBooking