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