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.

Page items in a thread session object. Items are sorted by created_at.

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

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be workflow_blobhub.
commandstringYesMust be list_session_thread_items.
session_idstringYesThe ID of the session.
aliasstringYesAlias of the thread session object.
ascendingbooleanNoSort direction. Default false (newest first).
created_sincestringNoReturn items with created_at > created_since.
created_beforestringNoReturn items with created_at < created_before.

Response

ParameterTypeDescription
itemsarrayPage of thread items sorted by created_at.
Page size is server-controlled. Use created_since to tail forward from the newest known item; use created_before to paginate backward from the oldest known item.

Errors

  • invalid_thread_envelope — the alias does not exist or its value.type is not "thread".

Example

{
  "engine": "workflow_blobhub",
  "command": "list_session_thread_items",
  "session_id": "sess_001",
  "alias": "onboarding_thread",
  "ascending": false
}