Forum Discussion
Henning Strand
Jun 14, 2018Brass Contributor
Updating a Hyperlink field (both url and description) using Flow?
I tried using the update item action to set a Hyperlink type column in my custom list. The Flow field for this column only accepts the url so there seems to be no way to add the description part. Any...
danmitchell36
Mar 13, 2019Copper Contributor
If you're still having issues implementing the REST API I wrote a blog post on how to update hyperlinks below:
https://www.dmcinfo.com/latest-thinking/blog/id/9832/creating-sharepoint-list-items-in-microsoft-flow-using-a-rest-api
- mo_mkfMar 15, 2019Copper Contributor
Hey danmitchell36,
Thanks for the link, I gave yours a try, but got this error:
Not well formatted JSON stream.
clientRequestId: 865768ab-bec3-44ed-a436-fb15aa25cd69
serviceRequestId: a805c99e-a06d-8000-aa83-4de13cfb3351Thanks
- Jean-Paul van den BogertOct 30, 2020Copper Contributor
mo_mkf Probably because his code contains the wrong quotes:
ā AND ā
If you replace them with the default quotes
" AND "
Then the JSON error is resolved
{ "Title": "Test", "Link":{ "_metadata": {"type": "SP.FieldUrlValue"}, "Description": "Link", "Url": "https://www.google.com" } }
- StephanieCutiyogAug 13, 2019Copper Contributor
Did you ever figure out the No weel formatted JSON stream error? I'm getting the same