Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 989 Bytes

File metadata and controls

43 lines (32 loc) · 989 Bytes

(GET) Get All Books

https://book-rest-api-go.herokuapp.com/books

(GET) Get Single Book By ID

https://book-rest-api-go.herokuapp.com/books/2

(POST) Create Book

https://book-rest-api-go.herokuapp.com/books

{
  "title": "New Book",
  "author": "New Author",
  "language": "English",
  "total_pages": 209,
  "image_path": "",
  "wikipedia_link": "",
  "country": "Cambodia"
}

(PUT) Update Book By ID

https://book-rest-api-go.herokuapp.com/books/2

{
  "title": "Updated Book",
  "author": "Updated Author",
  "language": "English",
  "total_pages": 209,
  "image_path": "",
  "wikipedia_link": "",
  "country": "Cambodia"
}

(DELETE) Delete Book By ID

https://book-rest-api-go.herokuapp.com/books/2