Change Field
Update a field value on a ticket.
Sets a field to a new value, type-checked against the field you choose.
Inputs
- Ticketrequired — Ticket. Provides the ticket whose field is updated. The executor resolves the ticket first and then applies the field change.
- Fieldrequired — Field<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.
- Value — T. 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
- Signal — Boolean. 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.