Bookshelf

Base URL: /, Version: 1.0.0

Bookshelf RESTful API

Schemes: http

Summary

Path Operation Description
/books POST

Finds Books by part of its title or description.

Paths

Finds Books by part of its title or description.

POST /books

Tags: books

You can find all books not using 'q' (query param) or filter some results using a 'q' param on the request.

q

Query parameter to find a book

query string

application/json

200 OK

successful operation

Schema definitions

Bookshelf: object

{
"bookShelf": [
{
"authors": [
"authors",
"authors"
]
,
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
},
{
"authors": [
"authors",
"authors"
]
,
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
}
]
}
bookShelf: object[]

BookVO: object

{
"authors": [
"authors",
"authors"
]
,
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
}
isbn: string
title: string
subtitle: string
authors: string[]
string
published: string (date-time)
publisher: string
pages: integer (int32)
description: string
instock: boolean