List Quick Responses
connectwisdomservice_list_quick_responses | R Documentation |
Lists information about quick response¶
Description¶
Lists information about quick response.
Usage¶
connectwisdomservice_list_quick_responses(knowledgeBaseId, maxResults,
nextToken)
Arguments¶
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. |
maxResults |
The maximum number of results to return per page. |
nextToken |
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
quickResponseSummaries = list(
list(
channels = list(
"string"
),
contentType = "string",
createdTime = as.POSIXct(
"2015-01-01"
),
description = "string",
isActive = TRUE|FALSE,
knowledgeBaseArn = "string",
knowledgeBaseId = "string",
lastModifiedBy = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
name = "string",
quickResponseArn = "string",
quickResponseId = "string",
status = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"CREATED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED"|"UPDATE_IN_PROGRESS"|"UPDATE_FAILED",
tags = list(
"string"
)
)
)
)
Request syntax¶
svc$list_quick_responses(
knowledgeBaseId = "string",
maxResults = 123,
nextToken = "string"
)