A guide for architects on using Smart Values to pull dynamic, contextual data from your Objects and their relationships into your automation actions.
🧊 Objects
when the rule runs.
Dear {{customer.name}}
, and the system automatically fills in the correct name for each recipient. Smart Values bring this power to every part of your automation.{{object.field_key}}
{{object...}}
: This refers to the 🧊 Object
that triggered the rule....field_key}}
: This refers to the unique key of the Data Field
whose value you want to pull.Send Message: "A new task has been assigned."
(This is not very useful as it lacks context.)
Send Message: "Hi {{object.assignee.name}}, you've been assigned a new task: '{{object.name}}'. The priority is {{object.priority}}."
object
keyword refers to the 🧊 Object
that started the automation.
{{object.name}}
: The name or title of the 🧊 Object
.{{object.key}}
: The unique key of the 🧊 Object
(e.g., TASK-123
).{{object.creator.name}}
: The full name of the user who created the 🧊 Object
.{{object.assignee.email}}
: The email address of the user in the ‘Assignee’ field.{{object.any_custom_field_key}}
: The value from any of your custom fields.currentUser
keyword refers to the user who performed the action that triggered the rule (e.g., the person who changed the status).
{{currentUser.name}}
: The full name of the user who triggered the rule.{{currentUser.email}}
: The email address of that user.🧊 Object
has an Object Picker
field, you can use dot notation to traverse the relationship and pull data from the referenced 🧊 Object
.
🧊 Project
Object. The Project
has an Object Picker
field with the key client_company
that references a 🧊 Client
Object.{{object.client_company.name}}
will be replaced with the name of the client company.{{object.client_company.account_manager.name}}
will be replaced with the name of the account manager from the referenced 🧊 Client
Object.object
-> assignee
-> name
to insert {{object.assignee.name}}
into the email body.]