Create Layout
connectcases_create_layout | R Documentation |
Creates a layout in the Cases domain¶
Description¶
Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface:
-
Fields to display to the users
-
Field ordering
Title and Status fields cannot be part of layouts since they are not configurable.
Usage¶
Arguments¶
content
[required] Information about which fields will be present in the layout, and information about the order of the fields.
domainId
[required] The unique identifier of the Cases domain.
name
[required] The name of the layout. It must be unique for the Cases domain.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_layout(
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"
)
)
)
)
)
),
domainId = "string",
name = "string"
)