I have a workflow currently that will send an email when an item is completed under certain conditions. My issue is that multiple items may fall under one project title, and I would like for only one email to be sent when all the items are completed and for the email to include the data on all the items that were completed. I have included the setup I am using currently for sending an email with completion of each item individually in testing for SharePoint 2007, but I also have this in SharePoint Online as we are getting ready to switch over soon. Any assistance with how I can go about doing this would be great. Thanks!
Hi Ken,
You may have better luck using Chrome. IE is going to return this as an XML feed. If you open this up in Chrome, you’ll see the XML Load.
I would start with that URL. When you see XML show up, move to the next portion..
/_api/web/lists/GetByTitle(‘Tasks’)
And see if XML shows up. If yes, try and grab some items like so…
/_api/web/lists/GetByTItle(‘Tasks’)/items
and work your way through the url until you can start filtering the items.