Skip to content

Batch Put Field Options

connectcases_batch_put_field_options R Documentation

Creates and updates a set of field options for a single select field in a Cases domain

Description

Creates and updates a set of field options for a single select field in a Cases domain.

Usage

connectcases_batch_put_field_options(domainId, fieldId, options)

Arguments

domainId

[required] The unique identifier of the Cases domain.

fieldId

[required] The unique identifier of a field.

options

[required] A list of FieldOption objects.

Value

A list with the following syntax:

list(
  errors = list(
    list(
      errorCode = "string",
      message = "string",
      value = "string"
    )
  )
)

Request syntax

svc$batch_put_field_options(
  domainId = "string",
  fieldId = "string",
  options = list(
    list(
      active = TRUE|FALSE,
      name = "string",
      value = "string"
    )
  )
)