Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

32 lines (27 loc) · 1.04 KB

Meeting-Api by shreyaa dani

a basic version of meeting scheduling API buid using Go

It executes folowing services:

  • Schedule a meeting:
    • ○ it is POST request ○ Uses JSON request body ○ works on http://localhost:9090/meetings ○ returns the meeting in JSON format
  • Get a meeting using id
    • ○ it is a GET request ○ Id is taken as the url parameter ○ works on http://localhost:9090/meeting/id (where id= meeting id) ○ returns the meeting in JSON format
  • Lists all meetings within a time frame
    • ○ its a GET request ○ it works on http://localhost:9090/meeting?StartT=str1&EndT=str2 (where the start and end time is inputed in str1 and str2 respectively) ○ returns meetings in JSON format that are within the time range
  • Lists all meetings
    • ○ its a GET request ○ it works on http://localhost:9090/all ○ returns all meetings in JSON format

    ALL THE OUTPUT IMAGES