Skip to content

Update app book read status

PUT
/api/v1/app/books/{bookId}/status
curl --request PUT \
--url http://127.0.0.1:58259/api/v1/app/books/1/status \
--header 'Content-Type: application/json' \
--data '{ "status": "UNREAD" }'

Update the read status of a book from the app interface.

bookId
required
integer format: int64
Media type application/json
object
status
required
string
Allowed values: UNREAD READING RE_READING READ PARTIALLY_READ PAUSED WONT_READ ABANDONED UNSET

OK