Skip to content

brunolellis/javalin-users-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

users-api

Small project using javalin microframework

httpie commands

Commands using httpie to test the REST api:

  • return all users: http localhost:7000/users
  • return specific user: http localhost:7000/users/1
  • return specific user by its email: http localhost:7000/users/email/[email protected]
  • create user: http POST localhost:7000/users "name=Ayrton Senna" [email protected]
  • update user: http PATCH localhost:7000/users/3 "name=Steve Jobs"
  • delete user: http DELETE localhost:7000/users/5

About

Simple "users" REST API to assess javalin microframework

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages