Skip to main content
List objects stored in a session.

POST /revisions/:id/data/query (Command: list_session_objects)

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be workflow_blobhub.
commandstringYesMust be list_session_objects.
session_idstringYesThe ID of the session.

Response

ParameterTypeDescription
objectsarrayList of object aliases.
Objects of type "thread" and "graph" appear in this list like any other session object. Their envelopes are returned inline; items and elements respectively live in separate stores and are not included here.

Example

{
  "engine": "workflow_blobhub",
  "command": "list_session_objects",
  "session_id": "sess_001"
}
{
  "objects": [
    { "alias": "result_msg" }
  ]
}