{{incident.raw_functionalities | get: '<attribute>'}}
Multi-select will follow an array syntax. Where i references the specific functionality object in the list of functionalities.{{incident.raw_functionalities\[i\] | get: '<attribute>'}}
{{ incident.functionality_ids }}
OR
{{ incident.raw_functionalities | get: 'id'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'id' }}
for a multi-select field type
{{ incident.functionalities }}
OR
{{ incident.raw_functionalities | get: 'name'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'name' }}
for a multi-select field type
{{ incident.functionality_slugs }}
OR
{{ incident.raw_functionalities | get: 'slug'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'slug' }}
for a multi-select field type
{{ incident.raw_functionalities | get: 'description'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'description' }}
for a multi-select field type
{{ incident.raw_functionalities | get: 'color'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'color' }}
for a multi-select field type
{{ incident.raw_functionalities | get: 'slack_channels'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'slack_channels' }}
for a multi-select field type
{{ incident.raw_functionalities | get: 'slack_aliases'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'slack_aliases' }}
for a multi-select field type
{{ incident.raw_functionalities | map: 'notify_emails' | flatten | join: ',' }}
in workflow configurations.
The following Liquid syntax will allow you to list out the functionality Notify Email(s) that are selected for an incident:
{{ incident.raw_functionalities | get: 'notify_emails'}}
for the select field type
{{ incident.raw_functionalities\[i\] | get: 'notify_emails' }}
for a multi-select field type
{{ incident.raw_functionalities | get: 'pagerduty_id' }}
for the select field type
{{ incident.raw_functionalities\[0\] | get: 'pagerduty_id' }}
for a multi-select field type
Opsgenie
{{ incident.raw_functionalities | get: 'opsgenie_id' }}
for the select field type
{{ incident.raw_functionalities\[0\] | get: 'opsgenie_id' }}
for a multi-select field type