Magidoc

SalesforceFieldInput
Input Object

Field name/value pair for record operations.

Fields

#

fieldName

Non-null

The Salesforce field API name (e.g., Name, Description, Amount)

fieldValue

Non-null

The value to set. Format based on field type:

  • Text: "My text" (plain string)
  • Number/Currency: "5000" or "99.99" (parsed as number)
  • Boolean: "true" or "false" (parsed as boolean)
  • Date: "2024-12-31" (ISO format string)
  • To clear a field: "null" (parsed as null)