Skip to content

Update personal rating

PUT
/api/v1/books/personal-rating
curl --request PUT \
--url http://127.0.0.1:58259/api/v1/books/personal-rating \
--header 'Content-Type: application/json' \
--data '{ "ids": [ 1 ], "rating": 1 }'

Update the personal rating for one or more books.

Media type application/json

Personal rating update request

object
ids
Array<integer>
0 <= 500 items
rating
integer format: int32
Example generated
{
"ids": [
1
],
"rating": 1
}

Personal rating updated successfully

Media type */*
Array<object>
object
bookId
integer format: int64
personalRating
integer format: int32