SetProjectAttribute

The SetProjectAttribute action sets the value of a specific project-level attribute. Project attributes store configuration and settings that apply to the entire project.

SetProjectAttribute(
    field: str,
    value: str
)

Where:

  • field: The name of the project attribute to set.
  • value: The value to assign to the attribute.

Example

{{SetProjectAttribute(field="project_attributes_setting_booking_enabled", value="True")}}

{{SendMessage(message="Booking has been enabled.")}}

The above code snippet sets the "project_attributes_setting_booking_enabled" attribute to "True," enabling the booking feature for the project.