Skip to content

Get library book

GET
/api/library/{id}

Retrieve a single organized book with its files

Parameters

Path Parameters

id*
Type
string
Required
Format
"uuid"

Responses

Book with files

application/json
JSON
{
  
"id": "string",
  
"status": "string",
  
"title": "string",
  
"author": "string",
  
"genres": [
  
  
"string"
  
],
  
"tags": [
  
  
"string"
  
],
  
"createdAt": "string",
  
"updatedAt": "string",
  
"files": [
  
  
{
  
  
  
"id": "string",
  
  
  
"format": "string",
  
  
  
"originalName": "string",
  
  
  
"storagePath": "string",
  
  
  
"fileSize": "string",
  
  
  
"checksum": "string"
  
  
}
  
]
}

Samples