Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 819 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 819 Bytes

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