Skip to content

Get Case

connectcases_get_case R Documentation

Returns information about a specific case if it exists

Description

Returns information about a specific case if it exists.

Usage

connectcases_get_case(caseId, domainId, fields, nextToken)

Arguments

caseId

[required] A unique identifier of the case.

domainId

[required] The unique identifier of the Cases domain.

fields

[required] A list of unique field identifiers.

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(
  fields = list(
    list(
      id = "string",
      value = list(
        booleanValue = TRUE|FALSE,
        doubleValue = 123.0,
        emptyValue = list(),
        stringValue = "string",
        userArnValue = "string"
      )
    )
  ),
  nextToken = "string",
  tags = list(
    "string"
  ),
  templateId = "string"
)

Request syntax

svc$get_case(
  caseId = "string",
  domainId = "string",
  fields = list(
    list(
      id = "string"
    )
  ),
  nextToken = "string"
)