I would really appreciate some help figuring out the format the SharePoint url is supposed to be in. I’ve tried using the url where the list is located, also tried splitting the url. So far every url I’ve tried gives me the same error saying itemNotFound. Any help is appreciated
Since my post I’ve successfully pulled the data and I am now using a dictionary to extract the data in a readable way. Can you explain the syntax “function(x) x.Name” or elaborate on the syntax in the image you used “ListItem.Fields.toDic…”
ListItem.Fields
sends the Fields to the LINQ processing ToDictionary
Transforms it to a Dictionary Function(x) x.Name
the Lambda function - for taking the dictionary entry Key info Function(x) x.Value
the Lambda function - for taking the dictionary entry Value info