
Announcements
Hi Im trying to copy a sharepoint list to another sharepoint list. Everything was copied except the 'Comments' section for each item. Anyone here knows how to do that?
You can use Send HTTP request to SharePoint action to get the comments using the following URI:
_api/web/lists/getbytitle('<your_list_name>')/items(<your_list_item_id>)/Comments
After that you can add a Parse JSON action and get the comments value.
Hope it helps!
Ferran