Reputation: 2503
I have Lookup with query "Select CustomerName, CustomerSales From Customers"
I have Web Activity for Notification purpose and I would like to send list of CustomerNames and Customer Sales. (For example Tesla, 1234000. There are 1-50 rows)
I can successfully send static text with Web Activity, but don't know how to build body for sending all data.
How to send data from table with Web Activity?
Upvotes: 0
Views: 1044
Reputation: 273
I assume you have unselected "firs row" only option inside Lookup activity. If yes, then your lookup data will actually come as array in output json of lookup activity.
So, you should consider writing below expression to get that array.
@activity('Fetch').output.value
Upvotes: 1