Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.42 KB

File metadata and controls

49 lines (29 loc) · 1.42 KB

Appointment API was built on the Ruby on Rails web application development framework. It utilizes SQLITE3 for the database on development, and POSTGRESQL for production. Rails integration and unit testing was applied (rake test). With Appointment API you can create your own appointments, filter out through different attributes, view all appointments, upgrade existing ones, or delete the ones you don’t need.

To view all appointments

or

{

start_time: 11/1/13 7:00,
end_time: 11/1/13 7:05,
first_name: "Laurence",
last_name: "Marcum",
"comments": "Always on time"

}

Fields required

  • Start Time

  • End Time

  • First Name

  • Last Name

An appointment will not get created or updated if the start and end time overlaps with an existing one. All new appointments must be in the future.