Hi,
I am using the help of ARCGIS API in Angular to draw and post the data. But the data that is obtained in my angular app is passed via web api which is in asp.net core. I have done this to make sure that all my gis api calls happen via the server.
I had seen that the following is the syntax to post the data for apply edits (Feature Service/ Layer).
adds=[<feature1>, <feature2>]
But I am confused on how to post the data via my web api using http client. Please provide a sample request through which I can post my data to applyedits endpoint. I tried converting my model to Json format but I couldn't succeed.