Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 591 Bytes

File metadata and controls

14 lines (10 loc) · 591 Bytes

Library Management System

Administrator Microservice

Administrator service for Library Management System. Made with Spring Boot. For library system administrators, it provides full CRUD functionality for all tables in the LMS system.

Task Method Body
Get all authors GET /admin/authors
Create new author POST /admin/authors {"name": "Jim Jones"}
Update author PUT /admin/author/:id {"id":5, "name": "James Joyce"}
Delete author DELETE /admin/author/:id

Collections include: authors, books, borrowers, loans, genres, branches, and publishers.