Skip to content

List Fields

connectcases_list_fields R Documentation

Lists all fields in a Cases domain

Description

Lists all fields in a Cases domain.

Usage

connectcases_list_fields(domainId, maxResults, nextToken)

Arguments

domainId

[required] The unique identifier of the Cases domain.

maxResults

The maximum number of results to return per page.

nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

Value

A list with the following syntax:

list(
  fields = list(
    list(
      fieldArn = "string",
      fieldId = "string",
      name = "string",
      namespace = "System"|"Custom",
      type = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|"Url"|"User"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_fields(
  domainId = "string",
  maxResults = 123,
  nextToken = "string"
)