Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 859 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 859 Bytes

Description

A node.js RESTful API where a user can create an account and have attendees check-in or check-out.

Url

https://simpleattendance-api.herokuapp.com

API Endpoints

Base Url
[Url]/v1
Description Verb Route
Service Status GET /api-status
Users
Create user account POST /user/signup
User login POST /user/login
Get a User GET /user/:id
Delete a User DELETE /user/:userId
Attendees
Get All Attendees of a User GET /user/:id/attendees
Attendee Check-In POST /attendee/:id/check-in
Attendee Check-Out POST /attendee/:id/check-out