Return the details for a specific item

GET /library/item/{itemid}

Get an item the logged in user has access to

Path parameters

  • itemid integer(int64) Required

    Item ID of the library item

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • items array[object]

      Will only be 1 item returned

      Hide items attributes Show items attributes object
      • name string
      • item_id integer
      • collection_id integer
      • item_code string
      • author string
      • format_type string
      • image_file_id string
      • sub_format_type string
      • number_available integer
      • number_not_available integer
      • description string
      • date_ymd string
      • date_display string
      • library_name string
      • catalogue_name string
      • collection_name string
GET /library/item/{itemid}
curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/library/item/{itemid}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "items": [
    {
      "name": "Hitchhiker's Guide to the Galaxy",
      "item_id": 10,
      "collection_id": 1,
      "item_code": 100022,
      "author": "asdf",
      "format_type": "physical",
      "image_file_id": "string",
      "sub_format_type": "string",
      "number_available": 10,
      "number_not_available": 2,
      "description": "asdfjhaskdfj",
      "date_ymd": "string",
      "date_display": "string",
      "library_name": "Book Library",
      "catalogue_name": "Fiction",
      "collection_name": "Comedies"
    }
  ]
}