Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 312 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 312 Bytes

BEE API

A small API that stores a flask of bees.

GET BEES

curl localhost:4000/bees

CREATE BEE

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"name":"martin"}' \
  https://localhost:4000/bees

DELETE BEE

curl -X DELETE localhost:4000/bees/1