Skip to content

Nudge is a reminder app to help manage your task based on how often you need to complete them

Notifications You must be signed in to change notification settings

louissullivan4/stew-nudge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nudge - Occurrence Based Reminder App

User crud operations

  • Create:
curl -X POST http://localhost:3000/users -H "Content-Type: application/json" -d '{"email": "[email protected]","username": "johndoe2","first_name": "John","last_name": "Doe","phone_number": "1234567890","timezone": "UTC","subscription": true,"birthday": "1990-01-01"}'
  • Get (by id):
curl -X GET http://localhost:3000/users/123e4567-e89b-12d3-a456-426614174000
  • Update (by id):
curl -X PUT http://localhost:3000/users/123e4567-e89b-12d3-a456-426614174000 -H "Content-Type: application/json" -d '{"first_name": "Johnny","last_name": "Doe","phone_number": "0987654321"}'
  • Delete (by id):
curl -X DELETE http://localhost:3000/users/123e4567-e89b-12d3-a456-426614174000

About

Nudge is a reminder app to help manage your task based on how often you need to complete them

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published