The list of available libraries

GET /library/list

The list of the high level library names. A library consists of catalogues.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • name string
    • library_id integer
    • type string
    • max_reserves integer
    • return_by_days integer
GET /library/list
curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/library/list' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "string",
    "library_id": 42,
    "type": "string",
    "max_reserves": 42,
    "return_by_days": 42
  }
]