Sync-Kobo: - Auto link books endpoint tests - Bulk link books endpoint tests - Get unlinked book suggestions endpoint tests OPDS: - Download book with on-the-fly KEPUB conversion tests All tests cover no user, user, and admin contexts
35 lines
713 B
Plaintext
35 lines
713 B
Plaintext
{
|
|
"meta": {
|
|
"name": "Bulk Link Unlinked Books",
|
|
"type": "http"
|
|
},
|
|
"req": {
|
|
"url": "{{baseUrl}}/sync/bulk-link-books",
|
|
"method": "POST",
|
|
"header": [
|
|
{
|
|
"key": "Content-Type",
|
|
"value": "application/json"
|
|
},
|
|
{
|
|
"key": "Authorization",
|
|
"value": "Bearer {{authToken}}"
|
|
}
|
|
],
|
|
"body": {
|
|
"links": [
|
|
{
|
|
"unlinked_book_id": "{{unlinkedBookId1}}",
|
|
"media_item_id": "{{mediaItemId1}}",
|
|
"confidence_score": 1.0
|
|
},
|
|
{
|
|
"unlinked_book_id": "{{unlinkedBookId2}}",
|
|
"media_item_id": "{{mediaItemId2}}",
|
|
"confidence_score": 0.9
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|