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