Forum Discussion
Add Image column ServerRelativeURL to another column
- Apr 12, 2023
viktorijab Yes, you have to use "Send an HTTP Request to SharePoint" action in Power automate flow to get the Image column details as standard SharePoint connector triggers do not provide it in triggerOutputs.
So, you have to use the flow like below:
Related reads:
- SharePoint Online: All you need to know about New Image column type
- Download Image from SharePoint Image column using JSON formatting
- Update image in SharePoint/Microsoft Lists Image columns using Power Automate
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs
But that gives the following error:
The 'inputs.parameters' of workflow operation 'Update_item' of type 'OpenApiConnection' is not valid. Error details: Input parameter 'item/Hyperlink' is required to be of type 'String/uri'. The runtime value '"/sites/SiteName/SiteAssets/Lists/ListID/Placeholder.png"' to be converted doesn't have the expected format 'String/uri'.
How would I convert that to make it suitable please?
Thank you
viktorijab It is working fine for me. I have tested and posted screenshot of working flow.
What is the problem when using tenant URL with outputs of compose action? You can also concatenate both using concat function to create a single string output.
Also, you are receiving the error when you are not using tenant URL because SharePoint hyperlink column expects value with valid URL staring with either http or https. Hence, you have to prepend the tenant URL to server relative URL of an image.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs
- viktorijabApr 12, 2023Copper ContributorApologies, it is working great! I was including "https://www" when I should've used just "https://"
Thanks again for the response, the problem is now solved.