Search Related Items
| connectcases_search_related_items | R Documentation |
Searches for related items that are associated with a case¶
Description¶
Searches for related items that are associated with a case.
If no filters are provided, this returns all related items associated with a case.
Usage¶
Arguments¶
caseId[required] A unique identifier of the case.
domainId[required] The unique identifier of the Cases domain.
filtersThe list of types of related items and their parameters to use for filtering.
maxResultsThe maximum number of results to return per page.
nextTokenThe 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",
relatedItems = list(
list(
associationTime = as.POSIXct(
"2015-01-01"
),
content = list(
comment = list(
body = "string",
contentType = "Text/Plain"
),
contact = list(
channel = "string",
connectedToSystemTime = as.POSIXct(
"2015-01-01"
),
contactArn = "string"
),
file = list(
fileArn = "string"
)
),
performedBy = list(
userArn = "string"
),
relatedItemId = "string",
tags = list(
"string"
),
type = "Contact"|"Comment"|"File"
)
)
)