Skip to content

Update Field

connectcases_update_field R Documentation

Updates the properties of an existing field

Description

Updates the properties of an existing field.

Usage

connectcases_update_field(domainId, fieldId, name, description,
  attributes)

Arguments

domainId

[required] The unique identifier of the Cases domain.

fieldId

[required] The unique identifier of a field.

name

The name of the field.

description

The description of a field.

attributes

Union of field attributes.

Value

An empty list.

Request syntax

svc$update_field(
  domainId = "string",
  fieldId = "string",
  name = "string",
  description = "string",
  attributes = list(
    text = list(
      isMultiline = TRUE|FALSE
    )
  )
)