Skip to content
This repository has been archived by the owner on May 15, 2020. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 458 Bytes

using-rest-api.md

File metadata and controls

16 lines (12 loc) · 458 Bytes
# create account
http POST localhost:8080/account username="kevin_chen" email_address="[email protected]"

# get accounts
http GET localhost:8080/account

# set password
http PUT localhost:8080/account/983088048847720448/password password="potato-tomato-cherry-gun"

# delete account
http DELETE localhost:8080/account/983088048847720448

# login
http POST localhost:8080/token login="kevin_chen" password="potato-tomato-cherry-gun"