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

GET /library/item/{itemid}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/library/item/{itemid} \
 -H "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"
    }
  ]
}