ID
{{ incident.services }}
OR{{ incident.raw_services | get: 'id'}}
for select field type{{ incident.raw_services\[i\] | get: 'id' }}
for multi-select field typeName
{{ incident.services }}
OR{{ incident.raw_services | get: 'name'}}
for select field type{{ incident.raw_services\[i\] | get: 'name' }}
for multi-select field typeDescription
{{ incident.raw_services | get: 'description'}}
for select field type{{ incident.raw_services\[i\] | get: 'description' }}
for multi-select field typeOwning Team
Related Services
Color
{{ incident.raw_services | get: 'color'}}
for select field type{{ incident.raw_services\[i\] | get: 'color' }}
for multi-select field typeSlack Channels
{{ incident.raw_services | get: 'slack_channels'}}
for select field type{{ incident.raw_services\[i\] | get: 'slack_channels' }}
for multi-select field typeSlack User Group
{{ incident.raw_services | get: 'slack_aliases'}}
for select field type{{ incident.raw_services\[i\] | get: 'slack_aliases' }}
for multi-select field typeEmails
{{ 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: '<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.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