diff --git a/bruno/books/Bulk Update Books.bru b/bruno/books/Bulk Update Books.bru index 9d9ab73..eb079ef 100644 --- a/bruno/books/Bulk Update Books.bru +++ b/bruno/books/Bulk Update Books.bru @@ -29,22 +29,24 @@ "Content-Type": "application/json", "Authorization": "Bearer {{authToken}}" }, - "body": { - "updates": [ - { - "book_id": "{{bookId1}}", - "updates": { - "title": "Updated Title", - "genre": "Science Fiction" - } - }, - { - "book_id": "{{bookId2}}", - "updates": { - "author": "Updated Author" - } - } - ] - } + "body": { + "updates": [ + { + "book_id": "{{bookId1}}", + "updates": { + "title": "Updated Title", + "genre": "Science Fiction", + "tags": ["science fiction", "non-fiction", "ACME CORP."] + } + }, + { + "book_id": "{{bookId2}}", + "updates": { + "author": "Updated Author", + "contributors": ["O'Reilly Media", "Penguin Random House"] + } + } + ] + } } }