feedback.send - Fluid Topics - Latest

Integrate the Fluid Topics API

Category
Technical Notes
Audience
public
Version
Latest

This web application event occurs when a FEEDBACK_USER user sends feedback about one of the following types of content:

  • A topic in a structured document.
  • A structured document.
  • An unstructured document.

This event contains the following fields:

Field Description
breadcrumb Contains the list of topics leading to this topic in the document's table of contents. Each topic contains its tocId and title.
document An object containing information about the document.
id The document's identifier.
title The title of the document.
type The document's type (for example STRUCTURED_DOCUMENT)
metadata A list of the document's metadata with the label and values of each key.
mimeType The document's MIME type for an UNSTRUCTURED_DOCUMENT.
parentId The ID of the parent document when the document is a resource or attachment.
loggedIn true if the user is authenticated.

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

Example:

[
   {
        "breadcrumb": [
            {
                "tocId": "a993DAVQSIh2zMSm7ShhoA",
                "title": "Multiple-Server Installation"
            }
        ],
        "document": {
            "id": "x_UrzBm1ZjrB2_u7uXkECw",
            "title": "Install Fluid Topics on Multiple Servers",
            "type": "STRUCTURED_DOCUMENT",
            "metadata": [
                {
                    "key": "Version_FT",
                    "label": "Version",
                    "values": [
                        "3.6"
                    ]
                },
                {
                    "key": "Platform",
                    "label": "Operating System",
                    "values": [
                        "RHEL"
                    ]
                },
                {
                    "key": "Category",
                    "label": "Category",
                    "values": [
                        "Technical Notes"
                    ]
                },
                {
                    "key": "audience",
                    "label": "Audience",
                    "values": [
                        "public"
                    ]
                }
            ],
            "mimeType": null,
            "parentId": null
        },
        "loggedIn": true
    }
]