Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 460 Bytes

README.md

File metadata and controls

46 lines (40 loc) · 460 Bytes

ElysiaJs Books API

To Get Books:

GET /books

To Add A Book:

POST /books

example value:

{
  "name": "string",
  "author": "string"
}

To Update A Book:

PUT /books

example value:

{
  "id": 0,
  "name": "string",
  "author": "string"
}

To Get A Book By Id:

GET /books/:id

To Delete A Book:

DELETE /books/:id

To Sign In:

POST /sign/:name