{"id":20736857,"url":"https://github.com/roerohan/meetingsapi","last_synced_at":"2026-04-16T06:04:06.309Z","repository":{"id":57549629,"uuid":"305078735","full_name":"roerohan/MeetingsAPI","owner":"roerohan","description":"A simple meetings API built using Go.","archived":false,"fork":false,"pushed_at":"2020-10-19T10:23:29.000Z","size":37,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-18T01:21:19.355Z","etag":null,"topics":["api","backend","go","golang","mongo-driver","mongodb","website"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/roerohan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-18T10:46:20.000Z","updated_at":"2022-10-14T06:50:08.000Z","dependencies_parsed_at":"2022-08-27T01:31:27.959Z","dependency_job_id":null,"html_url":"https://github.com/roerohan/MeetingsAPI","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"roerohan/Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roerohan%2FMeetingsAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roerohan%2FMeetingsAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roerohan%2FMeetingsAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roerohan%2FMeetingsAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roerohan","download_url":"https://codeload.github.com/roerohan/MeetingsAPI/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243023318,"owners_count":20223396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","backend","go","golang","mongo-driver","mongodb","website"],"created_at":"2024-11-17T06:12:07.853Z","updated_at":"2025-12-24T07:35:17.709Z","avatar_url":"https://github.com/roerohan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Issues][issues-shield]][issues-url]\n\n\u003c!-- PROJECT LOGO --\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003c!-- \u003ca href=\"https://github.com/roerohan/MeetingsAPI\"\u003e\n    \u003cimg src=\"https://project-logo.png\" alt=\"Logo\" width=\"80\"\u003e\n  \u003c/a\u003e --\u003e\n\n  \u003ch3 align=\"center\"\u003eMeetingsAPI\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    A simple API built using Go.\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/roerohan/MeetingsAPI\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/roerohan/MeetingsAPI\"\u003eView Demo\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/roerohan/MeetingsAPI/issues\"\u003eReport Bug\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/roerohan/MeetingsAPI/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\n\n\u003c!-- TABLE OF CONTENTS --\u003e\n## Table of Contents\n\n* [About the Project](#about-the-project)\n  * [Built With](#built-with)\n* [Getting Started](#getting-started)\n  * [Prerequisites](#prerequisites)\n  * [Installation](#installation)\n* [Usage](#usage)\n* [Roadmap](#roadmap)\n* [Contributing](#contributing)\n* [License](#license)\n* [Contributors](#contributors-)\n\n\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n## About The Project\n\nA simple REST API is built for scheduling meetings as a starter project for Go. This has routes such as `/meetings` and `/meeting` to add meetings, and get meetings by their `id`. You can also filter meetings for a participant and by the start time and end time of the meeting.\n\n\n### Built With\n\n* [Go](https://golang.org/)\n* [MongoDB](https://www.mongodb.com/)\n* [Mongo-driver Go package](https://github.com/mongodb/mongo-go-driver)\n\n\n\n\u003c!-- GETTING STARTED --\u003e\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Prerequisites\n\n- Go\n- MongoDB\n\n### Installation\n \n1. Clone the Repo\n```sh\ngit clone https://github.com/roerohan/MeetingsAPI.git\n```\n2. Install Go packages\n```sh\ngo mod tidy\n```\n\n\n\n\u003c!-- USAGE EXAMPLES --\u003e\n## Usage\n\nTo run the project, you can use:\n\n```sh\ngo run src/main.go\n```\n\n1. POST `/meetings`: This route accepts a JSON of the following format:\n\n```json\n{\n    \"title\": \"something\",\n    \"participants\": [\n        {\n            \"name\": \"something\",\n            \"email\": \"something\",\n            \"rsvp\": \"Yes\"\n        }\n    ],\n    \"startTime\": 1603059170289,\n    \"endTime\": 1603059290289\n}\n```\n\u003e Note: This route ensures that a new meeting can't be added if a participant of the new meeting has already RSVP-ed \"Yes\" or \"Maybe\" to a different meeting. If it does, the list of meetings which conflict with the current meeting is returned.\n\n2. GET `/meetings?participant=\u003cemail\u003e`: This route takes the email ID of the participant and a list of meetings which the participant is included in, irrespective of the RSVP status.\n\n3. GET `/meetings?start=\u003cstartTimestamp\u003e\u0026end=\u003cendTimestamp\u003e`: This route returns a list of all meetings that occur in the time duration between `start` and `end`.\n\n4. GET `/meeting/\u003cid\u003e`: This route returns the meeting containing the ID as specified in the request parameter.\n\n\n\u003c!-- ROADMAP --\u003e\n## Roadmap\n\nSee the [open issues](https://github.com/roerohan/MeetingsAPI/issues) for a list of proposed features (and known issues).\n\n\n\n\u003c!-- CONTRIBUTING --\u003e\n## Contributing\n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'feat: Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\nYou are requested to follow the contribution guidelines specified in [CONTRIBUTING.md](./CONTRIBUTING.md) while contributing to the project :smile:.\n\n\u003c!-- LICENSE --\u003e\n## License\n\nDistributed under the MIT License. See [`LICENSE`](./LICENSE) for more information.\n\n\n\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[roerohan-url]: https://roerohan.github.io\n[issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=flat-square\n[issues-url]: https://github.com/roerohan/MeetingsAPI/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froerohan%2Fmeetingsapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froerohan%2Fmeetingsapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froerohan%2Fmeetingsapi/lists"}