This post was most recently updated on October 26th, 2020
- Add the Send an HTTP request to SharePoint action
- Add your site for Site Address
- Set Method to POST
- Set the Uri to _api/web/lists/GetByTitle(‘ListName’)/items([ID]). Update “ListName” to your list’s name. Replace “[ID]” with the ID field from dynamic content
- Click on “Text Mode” and Add below code to Header
12345{"Content-Type": "application/json;odata=verbose","X-HTTP-Method": "MERGE","IF-MATCH": "*"} - Add below code in Body
1234{'__metadata': {'type':'SP.Data.List_x0020_NameListItem'},'YourColumnName':{'Description': 'Description Text','Url': 'http://www.msn.com'}} - Replace List_x0020_Name with your own list’s name.
Note: ‘_x0020_’should replace any spaces in your list name. - Replace “YourColumnName” with the name of the hyperlink column’s name
- Replace Description text with the label/description/clickable text you want for the link
- Replace http://www.msn.com with the URL/address part of the hyperlink
Happy Coding!