Skip to content

mindxDoc/tester_backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tester Backend

Tester Backend: Book Review Service

API Reference

Schema

Parameter Type Description
id number The id of the book
title string Required. The title of your book
author string Required. The book author
price number currency Required. The pricing of the book
created_at number date Required. The date the book was added

Get all books

  GET /api/v1/books

Get a book

  GET /api/v1/books/:id

Post a book

  POST /api/v1/books

Update a book

  PUT /api/v1/books/:id

Remove a book

  DELETE /api/v1/books/:id