So my datatable is something like this:
I want to convert this datatable into a json array of objects which would be something like this:
[ { userName: 'sedhha',
Date: '11/10/2021 15:54:52:328',
skills: 'python,cpp,solidworks,matlab,ui,arduino,linux,raspberry-pi,computer-vision,react,flask,mongodb,c++,iot,gcp',
interests: 'AR/VR,Blockchain,Cybersecurity,DevOps,Gaming,Health,IoT,Machine Learning/AI,Productivity,Social Good,Web',
projectCount: 8,
hackathonCount: 17,
achievementCount: 9,
followerCount: 5,
followingCount: 0,
likesCount: 2 } ,{ userName: 'sedhha',
Date: '11/10/2021 15:54:52:328',
skills: 'python,cpp,solidworks,matlab,ui,arduino,linux,raspberry-pi,computer-vision,react,flask,mongodb,c++,iot,gcp',
interests: 'AR/VR,Blockchain,Cybersecurity,DevOps,Gaming,Health,IoT,Machine Learning/AI,Productivity,Social Good,Web',
projectCount: 8,
hackathonCount: 17,
achievementCount: 9,
followerCount: 5,
followingCount: 0,
likesCount: 2 }]
My final request body should look like this:
{
sheetName: "abc",
operationProps: <The Json which I showed above>
}