Skip to content

Get Content Summary

connectwisdomservice_get_content_summary R Documentation

Retrieves summary information about the content

Description

Retrieves summary information about the content.

Usage

connectwisdomservice_get_content_summary(contentId, knowledgeBaseId)

Arguments

contentId

[required] The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.

knowledgeBaseId

[required] The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.

Value

A list with the following syntax:

list(
  contentSummary = list(
    contentArn = "string",
    contentId = "string",
    contentType = "string",
    knowledgeBaseArn = "string",
    knowledgeBaseId = "string",
    metadata = list(
      "string"
    ),
    name = "string",
    revisionId = "string",
    status = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED"|"UPDATE_FAILED",
    tags = list(
      "string"
    ),
    title = "string"
  )
)

Request syntax

svc$get_content_summary(
  contentId = "string",
  knowledgeBaseId = "string"
)