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