Looks up a singleDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/marchena96/Paradigma-lab1/llms.txt
Use this file to discover all available pages before exploring further.
Library record by its primary key. The service queries the database for a library whose Id matches the supplied libraryId. If no match is found the endpoint returns 404 Not Found with an empty body.
Endpoint
Authentication
No authentication is required. TheGet action does not carry an [Authorize] attribute.
Path Parameters
The unique integer ID of the library to retrieve. Must match an existing
Library.Id value in the database.Response
200 OK
Returns a single Library object when a matching record is found.Auto-generated primary key of the library.
Human-readable name of the library.
Physical address or location description of the library.
404 Not Found
Returned when no library with the givenlibraryId exists. The response body is empty.
Status Codes
| Status | Meaning |
|---|---|
200 | OK — the requested Library object is returned. |
404 | Not Found — no library with the given ID was found. |