{{incident.raw_groups | get: '<attribute>'}}
Multi-select will follow an array syntax. Where i references the specific team object in the list of teams.{{incident.raw_groups\[i\] | get: '<attribute>'}}
{{ incident.group_ids }}
OR
{{ incident.raw_groups | get: 'id'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'id' }}
for multi-select field type
{{ incident.groups }}
OR
{{ incident.raw_groups | get: 'name'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'name' }}
for multi-select field type
{{ incident.group_slugs }}
OR
{{ incident.raw_groups | get: 'slug'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'slug' }}
for multi-select field type
{{ incident.raw_groups | get: 'description'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'description' }}
for multi-select field type
{{ incident.raw_groups | get: 'color'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'color' }}
for multi-select field type
{{ incident.raw_groups | get: 'slack_channels'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'slack_channels' }}
for multi-select field type
{{ incident.raw_groups | get: 'slack_aliases'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'slack_aliases' }}
for multi-select field type
{{ incident.raw_groups | map: 'notify_emails' | flatten | join: ',' }}
in workflow configurations.
The following Liquid syntax will allow you to list out the team Notify Email(s) that are selected for an incident:
{{ incident.raw_groups | get: 'notify_emails'}}
for select field type
{{ incident.raw_groups\[i\] | get: 'notify_emails' }}
for multi-select field type
{{ incident.raw_groups | get: 'pagerduty_id' }}
for select field type
{{ incident.raw_groups\[0\] | get: 'pagerduty_id' }}
for multi-select field type
Opsgenie
{{ incident.raw_groups | get: 'opsgenie_id' }}
for select field type
{{ incident.raw_groups\[0\] | get: 'opsgenie_id' }}
for multi-select field type
VictorOps
{{ incident.raw_groups | get: 'victor_ops_id' }}
for select field type
{{ incident.raw_groups\[0\] | get: 'victor_ops_id' }}
for multi-select field type
PagerTree
{{ incident.raw_groups | get: 'pagertree_id' }}
for select field type
{{ incident.raw_groups\[0\] | get: 'pagertree_id' }}
for multi-select field type