Display an Output Variable in a Microflow Message?

0
I have created a microflow to do a simple retrieve of all records for an entity. Then I invoke a microflow action to count all the records in the list. How do I display the Count variable in a microflow message?
asked
1 answers
4

In the Show Message activity in your microflow, add a parameter for the Count. Note that parameters need to be a string, so you'll have to make the parameter toString($Count)

Then in your message body, you can reference the parameter by using the index in a placeholder like this: {1}

answered