Skip to main content
Upload an object to the session storage.

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

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be workflow_blobhub.
commandstringYesMust be upload_session_object.
session_idstringYesThe ID of the session.
aliasstringYesUnique alias for the object.
valueobjectYesThe JSON object to store.

Response

Returns an empty JSON object upon success.

Example

{
  "engine": "workflow_blobhub",
  "command": "upload_session_object",
  "session_id": "sess_001",
  "alias": "config",
  "value": { "debug": true }
}