khub.process - Fluid Topics - Latest

Integrate the Fluid Topics API

Category
Technical Notes
Audience
public
Version
Latest

This server event occurs when all of the documents in a ZIP archive have finished being processed in the Knowledge Hub.

This event contains the following fields:

Field Description
processDurationS The number of seconds the process job ran.
processSource An object containing information about the source.
id The source's identifier.
name The source's name.
type The source's type.
processStatus The status of the process job. Possible values are:
  • OK: The processing succeeded, and it found no error in the content.
  • FAILED: The processing found an error in the content which prevented the publication of the document.
  • STOPPED: An ADMIN, KHUB_ADMIN, or CONTENT_PUBLISHER stopped the processing.
  • WARNING: The processing found an error in the content which did not prevent the publication of the document.
processType The type of process job. Possible values are PUBLISH, DELETE, UPDATE_METADATA, REPROCESS_METADATA, and UPDATE_ATTACHMENTS.
uploadId The identifier of the upload leading to the processing of the document.
waitDurationS The number of seconds before the process job started.

A table for the most common fields is in Analytics events.

Example:

[
  {
    "processDurationS": 12,
    "processSource": {
      "id": "md_docxs",
      "name": "Markdown DocXS",
      "type": "Markdown"
    },
    "processStatus": "OK",
    "processType": "PUBLISH",
    "uploadId": "de9282b1-efcf-4639-8825-8cd9b309452c",
    "waitDurationS": 0
  }
]