Skip to main content
GET
/
engine
/
v2
/
items
/
{item_id}
Get Item Metadata
curl --request GET \
  --url https://platform.ai.gloo.com/engine/v2/items/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "updated_at": "<string>",
  "etag": "<string>",
  "restore_by": "<string>",
  "item_title": "<string>",
  "item_subtitle": "<string>",
  "filename": "<string>",
  "publication_date": "<string>",
  "type": "<string>",
  "item_image": "<string>",
  "item_url": "<string>",
  "item_file": "<string>",
  "item_summary": "<string>",
  "item_number": "<string>",
  "item_extra": "<string>",
  "isbn": "<string>",
  "author": [
    "<string>"
  ],
  "item_tags": [
    "<string>"
  ],
  "evergreen": true,
  "visible_in_search": true,
  "visible_in_chat": true,
  "collection_memberships": [
    {
      "type": "<string>",
      "id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

item_id
string<uuid>
required

Response

Successful Response

item_id
string<uuid>
required
status
string
required
updated_at
string
required
etag
string
required
restore_by
string | null
item_title
string | null
item_subtitle
string | null
filename
string | null
publication_date
string | null
type
string | null
item_image
string | null
item_url
string | null
item_file
string | null
item_summary
string | null
item_number
string | null
item_extra
string | null
isbn
string | null
author
string[]
item_tags
string[]
evergreen
boolean
visible_in_chat
boolean
collection_memberships
CollectionMembership · object[]