List Cases For Contact
connectcases_list_cases_for_contact | R Documentation |
Lists cases for a given contact¶
Description¶
Lists cases for a given contact.
Usage¶
connectcases_list_cases_for_contact(contactArn, domainId, maxResults,
nextToken)
Arguments¶
contactArn |
[required] A unique identifier of a contact in Amazon Connect. |
domainId |
[required] The unique identifier of the Cases domain. |
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(
cases = list(
list(
caseId = "string",
templateId = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_cases_for_contact(
contactArn = "string",
domainId = "string",
maxResults = 123,
nextToken = "string"
)