Skip to main content

Updatedatadictionaryfieldrequest

Properties

NameTypeDescriptionNotes
NameStringThe field name.[required]
FieldTypeStringThe field data type. Must match the current value.[required]
DataDictionaryTypeEnum [ "Users", "Roles", "Permission Types", "Business Resources" ]The data dictionary that owns this field. Must match the current value.[required]
RequiredBooleanMust match the current value. Custom fields must be false.[required]

Examples

  • Prepare the resource
$Updatedatadictionaryfieldrequest = Initialize-Updatedatadictionaryfieldrequest -Name Cost Center `
-FieldType String `
-DataDictionaryType Users `
-Required false
  • Convert the resource to JSON
$Updatedatadictionaryfieldrequest | ConvertTo-JSON

[Back to top]