Skip to content

Get Layout

connectcases_get_layout R Documentation

Returns the details for the requested layout

Description

Returns the details for the requested layout.

Usage

connectcases_get_layout(domainId, layoutId)

Arguments

domainId

[required] The unique identifier of the Cases domain.

layoutId

[required] The unique identifier of the layout.

Value

A list with the following syntax:

list(
  content = list(
    basic = list(
      moreInfo = list(
        sections = list(
          list(
            fieldGroup = list(
              fields = list(
                list(
                  id = "string"
                )
              ),
              name = "string"
            )
          )
        )
      ),
      topPanel = list(
        sections = list(
          list(
            fieldGroup = list(
              fields = list(
                list(
                  id = "string"
                )
              ),
              name = "string"
            )
          )
        )
      )
    )
  ),
  createdTime = as.POSIXct(
    "2015-01-01"
  ),
  deleted = TRUE|FALSE,
  lastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  layoutArn = "string",
  layoutId = "string",
  name = "string",
  tags = list(
    "string"
  )
)

Request syntax

svc$get_layout(
  domainId = "string",
  layoutId = "string"
)