Developers

API Definitions

Definitions

UserType

// User type ID and name from the Knowledge Base.
{ // Unique user type identifier. "id": string, // Name of the user type. "name": string ...}

UserQuestions

/**
 * User question from the knowledge base. All related data is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "id": "8",
 *     "title": "What are the acme destinations?",
 *     "slug": "what-are-the-acme-destinations",
 *     "tracking": {
 *         "clickCode": "eyJpdiI6Im91MVhLdFZScFFasd="
 *     }
 * }
 */
{ // Unique user question identifier. "id": integer, // User questions title. "title": string, // Slug (URL) of the user question. "slug": string, // Tracking data required to track events. "tracking":
{ // Click code to track click events. "clickCode": string ...}
...}

ContentRelatedContents

[ /** * Content from the knowledge base. All related data is defined in the Knowledge instance knowledge base. * Example: * { * "id": 1, * "title": "Assistant", * "categories": [ * 1, * 3 * ], * "hasRelated": true, * "hasDecisionTree": false, * "hasCrossSelling": false, * "slug": "assistant", * "creationDate": "20180410161055", * "modificationDate": "20180921165547", * "tracking": { * "clickCode": "eyJjb250ZW50SWQiOiIxIiwibWF0Y2hUeXBlIjoiQ09OVEVOVCIsImxvZ0lkIjoiODksMDAwIn0=", * "rateCode": "eyJ0eXBlIjoiY29udGVudCIsImNvbnRlbnRJZCI6IjEiLCJsb2dJZCI6Ijg5LDAwMCJ9", * "externalCode": "eyjosghhsSDgjTadshoadfILYGFSasdaYRtgr0=" * }, * "attributes": { * "answer": "Assistant" * }, * "attributeArrays": { * "answer": [ * "Assistant" * ] * }, * "attributeGroups": { * "answers": [ * { * "short": [ * "Assistant" * ], * "long": [ * "The assistant helps you find what you need." * ] * } * ] * }, * "score": 0.87 * } */
{ // Unique content identifier. "id": integer, // Content title. "title": string, // Content title highlighted "titleHighlight": string, // Array of content categories ids. "categories": [ integer ], // True if the contents is linked to related content. False otherwise. "hasRelated": boolean, // True if the contents contains a decision tree. False otherwise. "hasDecisionTree": boolean, // True if the content contains a cross selling item. False otherwise. "hasCrossSelling": boolean, // Tracking data required to track events. "tracking":
{ // Click code to track click events. "clickCode": string, // Rating code to track rating events. "rateCode": string, // External code to track external events. "externalCode": string ...}
, // Slug (URL) of the content. "slug": string, // Creation date with format yyyymmddhhmmss. "creationDate": string, // Modification date with format yyyymmddhhmmss. "modificationDate": string, // Content attributes. Return the last setting if it is multiple. **Note:** DEPRECATED. Use `attributeArray` instead. "attributes":
{ "name": string ...}
, // Content attributes. Returns an array in each settting "attributeArrays":
{ "name": [ string ] ...}
, // Content attributes highlighted. Can be empty if the attributes are not highlighted. Returns an array in each settting. "attributeArraysHighlight":
{ "name": [ string ] ...}
, // Content group attributes. "attributeGroups":
{ "groupType":
[
{ "name": [ string ] ...}
...]
...}
, // Search score "score": integer
...}
...]

Content

/**
 * Content from the knowledge base. All related data is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "1": {
 *         "id": 1,
 *         "title": "Assistant",
 *         "categories": [
 *             1,
 *             3
 *         ],
 *         "hasRelated": true,
 *         "hasDecisionTree": false,
 *         "hasCrossSelling": false,
 *         "slug": "assistant",
 *         "creationDate": "20180410161055",
 *         "modificationDate": "20180921165547",
 *         "tracking": {
 *             "clickCode": "eyJjb250ZW50SWQiOiIxIiwibWF0Y2hUeXBlIjoiQ09OVEVOVCIsImxvZ0lkIjoiODksMDAwIn0=",
 *             "rateCode": "eyJ0eXBlIjoiY29udGVudCIsImNvbnRlbnRJZCI6IjEiLCJsb2dJZCI6Ijg5LDAwMCJ9",
 *             "externalCode": "eyjosghhsSDgjTadshoadfILYGFSasdaYRtgr0="
 *         },
 *         "attributes": {
 *             "answer": "Assistant"
 *         },
 *         "attributeArrays": {
 *             "answer": [
 *                 "Assistant"
 *             ]
 *         },
 *         "attributeGroups": {
 *             "answers": [
 *                 {
 *                     "short": [
 *                         "Assistant"
 *                     ],
 *                     "long": [
 *                         "The assistant helps you find what you need."
 *                     ]
 *                 }
 *             ]
 *         }
 *     }
 * }
 */
{ // Keys are IDs of the requested contents "contentId":
{ // Unique content identifier. "id": integer, // Content title. "title": string, // Array of content categories ids. "categories": [ integer ], // True if the content is linked to related content. False otherwise. "hasRelated": boolean, // True if the content contains a decision tree. False otherwise. "hasDecisionTree": boolean, // True if the content contains a cross selling item. False otherwise. "hasCrossSelling": boolean, // Tracking data required to track events. "tracking":
{ // Click code to track click events. "clickCode": string, // Rating code to track rating events. "rateCode": string, // External code to track external events. "externalCode": string ...}
, // Slug (URL) of the content. "slug": string, // Creation date with format yyyymmddhhmmss. "creationDate": string, // Modification date with format yyyymmddhhmmss. "modificationDate": string, // Content attributes. Return the last setting if it is multiple. **Note:** DEPRECATED. Use `attributeArray` instead. "attributes":
{ "name": string ...}
, // Content attributes. Returns an array in each setting "attributeArrays":
{ "name": [ string ] ...}
, // Content group attributes. "attributeGroups":
{ "groupType":
[
{ "name": [ string ] ...}
...]
...}
...}
...}

Result

/**
 * Content from the knowledge base. All related data is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "id": 1,
 *     "title": "Assistant",
 *     "categories": [
 *         1,
 *         3
 *     ],
 *     "hasRelated": true,
 *     "hasDecisionTree": false,
 *     "hasCrossSelling": false,
 *     "slug": "assistant",
 *     "creationDate": "20180410161055",
 *     "modificationDate": "20180921165547",
 *     "tracking": {
 *         "clickCode": "eyJjb250ZW50SWQiOiIxIiwibWF0Y2hUeXBlIjoiQ09OVEVOVCIsImxvZ0lkIjoiODksMDAwIn0=",
 *         "rateCode": "eyJ0eXBlIjoiY29udGVudCIsImNvbnRlbnRJZCI6IjEiLCJsb2dJZCI6Ijg5LDAwMCJ9",
 *         "externalCode": "eyjosghhsSDgjTadshoadfILYGFSasdaYRtgr0="
 *     },
 *     "attributes": {
 *         "answer": "Assistant"
 *     },
 *     "attributeArrays": {
 *         "answer": [
 *             "Assistant"
 *         ]
 *     },
 *     "attributeGroups": {
 *         "answers": [
 *             {
 *                 "short": [
 *                     "Assistant"
 *                 ],
 *                 "long": [
 *                     "The assistant helps you find what you need."
 *                 ]
 *             }
 *         ]
 *     },
 *     "score": 0.87
 * }
 */
{ // Unique content identifier. "id": integer, // Content title. "title": string, // Content title highlighted "titleHighlight": string, // Array of content categories ids. "categories": [ integer ], // True if the contents is linked to related content. False otherwise. "hasRelated": boolean, // True if the contents contains a decision tree. False otherwise. "hasDecisionTree": boolean, // True if the content contains a cross selling item. False otherwise. "hasCrossSelling": boolean, // Tracking data required to track events. "tracking":
{ // Click code to track click events. "clickCode": string, // Rating code to track rating events. "rateCode": string, // External code to track external events. "externalCode": string ...}
, // Slug (URL) of the content. "slug": string, // Creation date with format yyyymmddhhmmss. "creationDate": string, // Modification date with format yyyymmddhhmmss. "modificationDate": string, // Content attributes. Return the last setting if it is multiple. **Note:** DEPRECATED. Use `attributeArray` instead. "attributes":
{ "name": string ...}
, // Content attributes. Returns an array in each settting "attributeArrays":
{ "name": [ string ] ...}
, // Content attributes highlighted. Can be empty if the attributes are not highlighted. Returns an array in each settting. "attributeArraysHighlight":
{ "name": [ string ] ...}
, // Content group attributes. "attributeGroups":
{ "groupType":
[
{ "name": [ string ] ...}
...]
...}
, // Search score "score": integer
...}

Data

// Extra info variable. All attributes are defined in the Inbenta Knowledge Base.
{ "name": string, "group_name": string, "value":
[
{ // Property values. "": {} ...}
...]
...}

DecisionTree

[
{ // Button label to select the next node of the decision tree "label": string, // Unique content identifier "contentId": integer, "hasCrossSelling": boolean, // Tracking data required to track events. "tracking":
{ // Click code to track click events "clickCode": string, // Rate code to track rate events "rateCode": string, // External code to track external events "externalCode": string ...}
...}
...]

CrossSelling

/**
 * Category from the knowledge base. All the information is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "id": "1",
 *     "name": "Powered"
 * }
 */
{ // Unique cross-selling identifier. "id": integer, // Cross-selling name. "name": string ...}

CrossSellingForced

/**
 * Category from the knowledge base. All the information is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "id": "1",
 *     "name": "Powered",
 *     "attributes": {
 *         "img": "https://customer.inbenta.io/home.png"
 *     },
 *     "score": 1,
 *     "isForced": false,
 *     "tracking": {
 *         "clickCode": "E3ZGRhNjUifQ=="
 *     }
 * }
 */
{ // Unique cross-selling identifier. "id": integer, // Cross-selling name. "name": string, // Cross-selling attribute. "attributes": {}, // Cross-selling search score. "score": number, // Whether the returned cross-selling items are forced to always be displayed to end users or not. "isForced": boolean, // Cross-selling tracking. "tracking":
{ // Code with information to perform a cross-selling click "clickCode": string ...}
...}

Category

/**
 * Category from the knowledge base. All the information is defined in the Knowledge instance knowledge base.
 * Example:
 * {
 *     "id": 1,
 *     "name": "Support",
 *     "parent": 0,
 *     "numContents": 0,
 *     "numContentsDescendants": 5,
 *     "depth": 0,
 *     "children": [
 *         2,
 *         3
 *     ],
 *     "slug": "support"
 * }
 */
{ // Unique category identifier. "id": integer, // Category name. "name": string, // Parent category ID. "parent": integer, // Number of content items in the category. "numContents": integer, // Number of content items in the category and its children. "numContentsDescendants": integer, // Absolute depth from root category (root depth is 0). "depth": integer, // Children categories. "children": [ integer ], // Slug (URL) of the category. "slug": string ...}

ResponseEnvelope

// Response envelope for all requests
{ // Request result "results": {} ...}

ResponseContentsEnvelope

{ // Request result "results": {} ...}