Change Field

Update a field value on a ticket.

Sets a field to a new value, type-checked against the field you choose.

Inputs

  • TicketrequiredTicket. Provides the ticket whose field is updated. The executor resolves the ticket first and then applies the field change.
  • FieldrequiredField<T>. Identifies the ticket field to change. It can be supplied as a field object or a raw field ID string, and the action extracts the field identifier before updating.
  • ValueT. Provides the new value to store in the field. The executor converts the resolved input to text and sends that value to the ticket service.

Outputs

  • SignalBoolean. Indicates the field update completed successfully. This output is the action's success gate for downstream nodes.

Example use cases

Stamp a resolution date

Feed a Date constant into Value and the resolved-on field into Field to record when work finished.

See also