Expanding further
You may have noticed that the image shows up as an attachment inside the list item instead of in the picture column. At this time, the SharePoint Create item or Update item actions do not support manipulating an image column by default. With some creativity, however, you can craft a SharePoint HTTP request to upload the data directly.Let's see how!
- Edit the flow.
- Insert a new action between the Add attachment and Send an email (V2) steps.
From the Add an action flyout, select Compose.
- In the Inputs area of the Compose action, enter the following data:
{
"type": "thumbnail",
"fileName": "@{concat(triggerBody()?['email'],'_FavoriteThing_',triggerBody()?['file']?['name'])}",
"fieldName": "Picture"...