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