Skip to main content

Activity

info

The Activity template is only available in version C3 of Cirrus.

These fields are available in Activity templates:

ExpressionDescription
{{Activity.id}}Activity ID
{{Activity.description}}Description of the activity
{{Activity.result}}Result of the activity
{{Activity.closed}}Whether the activity is closed
{{Activity.scheduledDate}}Scheduled date of the activity
{{Activity.startTime}}Start time of the activity
{{Activity.endTime}}End time of the activity
{{Activity.location}}Location of the activity
{{Activity.externalKey}}External key of the activity
{{Activity.type.id}}ID of the activity type
{{Activity.type.name}}Name of the activity type
{{Activity.account.id}}ID of the account
{{Activity.account.name}}Name of the account
{{Activity.contact.id}}ID of the contact
{{Activity.contact.fullName}}The contact's given name and surname
{{Activity.contact.name}}The contact's given name
{{Activity.contact.surname}}The contact's surname
{{Activity.opportunity.id}}ID of the opportunity
{{Activity.opportunity.title}}Title of the opportunity
{{Activity.user.id}}ID of the user
{{Activity.user.fullName}}Name and surname of the user

Dynamic fields

These expressions are available when listing dynamic fields.

ExpressionDescription
{{name}}Display name of the dynamic field
{{value}}The dynamic field value, serialized as a string

Example of how to list dynamic fields.

<dl>
{{#each Activity.dynamicFields}}
<dd>{{name}}</dd>
<dt>{{value}}</dt>
{{/each}}
</dl>