Sharepoint Lists - Add List Items With Hyperlink

Is there a working way of adding list items with a hyper link using the add list items activity? I am trying to use the add list item activity to add a datable, but there is one column that is not strings but hyperlinks.
The image displays a navigation menu with "Office 365 - Classic" and "SharePoint Lists" sections, showing an option to "Add List Items" under SharePoint Lists. (Captioned by AI)

image

Hello @Alfred

You need to create the dictionary for the hyperlinks, please find the below steps for more information

–>Create a dictionary** to store your field names and values.
–>Include the hyperlink** in the correct format.
–>Use the Add List Item activity** to push the data to your SharePoint list.

Add list item example:

Prop Dictionary: New Dictionary(Of String, Object) From {{“Title”,“HR4”},

{“TestNumber”,4},

{“TestHyperlink”,“https://www.test4.com”}

}

Thanks for the quick response. However the add to list items activity does not accept Dictionary, it only accepts datatables.

image