I am using a HTTP get request to collect results from Formsite and want to use the responses to create items in SharePoint.
A sample of the json output is below. "id" is the question e.g "Expiry date 1" and "value" is the answer. I have upwards of 40 questions each with an individual id on the Json output. I only need to map back about 10 answers to the SharePoint list
{
"id": "98",
"position": 87,
"value": "15/06/2021"
},{
"id": "97",
"position": 85,
"value": "09/01/2022"
}
I have read quite a few posts but none that actually work for me thus far. Is anyone able to provide any assistance/quidance on a soulution for this?