Skip to content

Update library book

PATCH
/api/library/{id}

Edit metadata fields on an organized book

Parameters

Path Parameters

id*
Type
string
Required
Format
"uuid"

Request Body

application/json
JSON
{
  
"title": "string",
  
"author": "string",
  
"isbn10": "string",
  
"isbn13": "string",
  
"publisher": "string",
  
"publishedYear": 0,
  
"language": "string",
  
"description": "string",
  
"pageCount": 0,
  
"genres": [
  
  
"string"
  
],
  
"tags": [
  
  
"string"
  
]
}

Responses

Updated book

application/json
JSON
{
  
"id": "string",
  
"status": "string",
  
"title": "string",
  
"author": "string",
  
"genres": [
  
  
"string"
  
],
  
"tags": [
  
  
"string"
  
],
  
"createdAt": "string",
  
"updatedAt": "string"
}

Samples