Skip to content

Get Template

connectcases_get_template R Documentation

Returns the details for the requested template

Description

Returns the details for the requested template.

Usage

connectcases_get_template(domainId, templateId)

Arguments

domainId

[required] The unique identifier of the Cases domain.

templateId

[required] A unique identifier of a template.

Value

A list with the following syntax:

list(
  createdTime = as.POSIXct(
    "2015-01-01"
  ),
  deleted = TRUE|FALSE,
  description = "string",
  lastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  layoutConfiguration = list(
    defaultLayout = "string"
  ),
  name = "string",
  requiredFields = list(
    list(
      fieldId = "string"
    )
  ),
  status = "Active"|"Inactive",
  tags = list(
    "string"
  ),
  templateArn = "string",
  templateId = "string"
)

Request syntax

svc$get_template(
  domainId = "string",
  templateId = "string"
)