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