Get Quick Response
connectwisdomservice_get_quick_response | R Documentation |
Retrieves the quick response¶
Description¶
Retrieves the quick response.
Usage¶
Arguments¶
knowledgeBaseId
[required] The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base.
quickResponseId
[required] The identifier of the quick response.
Value¶
A list with the following syntax:
list(
quickResponse = list(
channels = list(
"string"
),
contentType = "string",
contents = list(
markdown = list(
content = "string"
),
plainText = list(
content = "string"
)
),
createdTime = as.POSIXct(
"2015-01-01"
),
description = "string",
groupingConfiguration = list(
criteria = "string",
values = list(
"string"
)
),
isActive = TRUE|FALSE,
knowledgeBaseArn = "string",
knowledgeBaseId = "string",
language = "string",
lastModifiedBy = "string",
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
name = "string",
quickResponseArn = "string",
quickResponseId = "string",
shortcutKey = "string",
status = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"CREATED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED"|"UPDATE_IN_PROGRESS"|"UPDATE_FAILED",
tags = list(
"string"
)
)
)