27 lines
566 B
Plaintext
27 lines
566 B
Plaintext
meta {
|
|
name: Add Books to Kobo Shelf
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
POST {{baseURL}}/api/devices/{{deviceID}}/shelves
|
|
Authorization: Bearer {{userToken}}
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"media_item_ids": [
|
|
"{{bookUUID1}}",
|
|
"{{bookUUID2}}"
|
|
],
|
|
"shelf_name": "Reading List",
|
|
"shelf_position": 0
|
|
}
|
|
|
|
{
|
|
"meta": {
|
|
"name": "Add Books to Kobo Shelf",
|
|
"description": "Add one or more books to a Kobo device shelf",
|
|
"documentation": "Manages which books should be synced to a specific Kobo device. Supports multiple shelves for organization."
|
|
}
|
|
}
|