Power Automate: Adding Image from a URL to Image Column using SharePoint HTTP Request Connector

Power Automate don’t support yet direct upload of image to a SharePoint Image list.

This does not upload the image to your SharePoint list but ONLY LINKS IT. If the image from the URL is removed, it will be displayed as an error.

HEADER PROPERTYVALUE
content-typeapplication/json; odata=verbose;
acceptapplication/json; odata=verbose;
X-HTTP-MethodMERGE
IF-MATCH*
_api/web/lists/getbytitle('Bistek Space')/items(1)
{
  "__metadata": {
    "type": "SP.Data.___________________________
  },
"Title":"___________________________",
  "___________________________": "{\"type\":\"thumbnail\",\"fileName\":\"___________________________\",\"fieldName\":\"___________________________\",\"serverUrl\":\"___________________________",\"serverRelativeUrl\":\"___________________________\",\"id\":\"\"}"
}
LetterInfoNotes
ASharePoint List
BSharePoint List NameIf your list name has spaces in it, example “Bistek Space”, just type it that way.
CSharePoint List Name in SP BackendIf your list name has spaces in it, replace the space with _x0200_. Example Bistek_x0200_Space
DThe title of your item list** can work even if blank
EThe name of your Image ColumnThere are two E’s in the image
FThe filename of the imageExample: https://bistek.space/xyz/abc/def.png What you will put is: def.png
GThe server url of the imageExample: https://bistek.space/xyz/abc/def.png What you will put is: https://bistek.space/
HThe rest of the url of the imageExample: https://bistek.space/xyz/abc/def.png What you will put is: xyz/abc/def.png

Full documentation of this connection is on this link.


Leave a Reply

Your email address will not be published. Required fields are marked *