{{incident.raw\_environments | get: '<attribute>'}}
Multi-select will follow an array syntax. Where i references the specific environment object in the list of environments.{{incident.raw\_environments\[i\] | get: '<attribute>'}}
{{ incident.environment\_ids }}
OR
{{ incident.raw\_environments | get: 'id'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'id'}}
for multi-select field type
{{ incident.environments }}
OR
{{ incident.raw\_environments | get: 'name'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'name' }}
for multi-select field type
{{ incident.environment\_slugs }}
OR
{{ incident.raw\_environments | get: 'slug'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'slug' }}
for multi-select field type
{{ incident.raw\_environments | get: 'description'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'description' }}
for multi-select field type
{{ incident.raw\_environments | get: 'color'}}
for the select field type
{{ incident.raw\_environments\[i\] | get: 'color' }}
for a multi-select field type
{{ incident.raw\_environments | get: 'slack\_channels'}}
for the select field type
{{ incident.raw\_environments\[i\] | get: 'slack\_channels' }}
for a multi-select field type
{{ incident.raw\_environments | get: 'slack\_aliases'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'slack\_aliases' }}
for multi-select field type
{{ incident.raw\_environments | map: 'notify\_emails' | flatten | join: ',' }}
in workflow configurations.
The following Liquid syntax will allow you to list out the environment Notify Email(s) that are selected for an incident:
{{ incident.raw\_environments | get: 'notify\_emails'}}
for select field type
{{ incident.raw\_environments\[i\] | get: 'notify\_emails' }}
for multi-select field type