Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt

Use this file to discover all available pages before exploring further.

Fetch a single thread item by id.

POST /revisions/:id/data (Command: get_session_thread_item)

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be workflow_blobhub.
commandstringYesMust be get_session_thread_item.
session_idstringYesThe ID of the session.
aliasstringYesAlias of the thread session object.
item_idstringYesThe item id returned by post_session_thread_item.

Response

ParameterTypeDescription
itemobjectThe retrieved thread item.

Errors

  • not_found — the item does not exist, or its stored session_id/alias/revision_id does not match the request.

Example

{
  "engine": "workflow_blobhub",
  "command": "get_session_thread_item",
  "session_id": "sess_001",
  "alias": "onboarding_thread",
  "item_id": "itm_01H..."
}