Forum Discussion
Using Flow to Create News Items from a SharePoint List
Bringing this tread up from the dead! I just had a similar requirement on how to create an SP online news item when a company press release is announced on the external group site. The way I have triggered this is that I subscribed to the company news bulletin. The flow triggers when I receive the subscription email. I use flow to parse the information I need out of the email and pass it into variables (Title, Target URL etc. The same thing could be done by using a list instead of an email. The important thing is how to create the news story with the information you have.
You can use the 'Send HTTP Request' connector with the following information
FULL BODY TEXT:
{"BannerImageUrl":"",
"Description":"",
"IsBannerImageUrlExternal":"true",
"OriginalSourceUrl":"",
"ShouldSaveAsDraft":false,
"Title":""
}
I kept the Banner image URL simple and saved an image into a document library. I use the same image for every news item created this way. You may prefer a different way.
The Variables you see can be picked up from your list instead
Good luck!