Return the details for a specific item
Get an item the logged in user has access to
Path parameters
-
Item ID of the library item
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"
}
]
}