{{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