The list of collections in the catalogue

GET /library/{library_id}/{catalogue_id}/list

All the collections in the catalogue.

Use the library list function to get the library id and the library {} list to get the catalogue.

A collection consists of items.

Path parameters

  • library_id integer(int64) Required

    ID of the Library

  • catalogue_id integer(int64) Required

    ID of the catalogue

Responses

  • 200 application/json

    OK

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