Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Object Name, Message, Color, Url Base are expression fields. The data type of the value returned depends on the elements used in the expression. Here are the list of sample outputs:

ExpressionOutput
test
test
sObject.Name
‘the name of this field in your org’
‘sObject.Name ’
sObject.Name
‘Hey, ‘+sObject.Name ’ 
Hey, ‘the name of this field in your org’
Hey, +sObject.Name
Hey, +sObject.Name
‘good’
good
sObject.colour_c
‘the name of this field in your org’
sObject.CA10_severity_c == “High”? ‘danger’ : ‘good’ 
danger / good


You can apply standard Slack formatting in the field Message. In our use case we apply bold message format by adding * before the text of the message.

...