Hi Team,
I am looking for a way to implemented the add data to a arcGIS table and also read the entries from table.
I tried with https://developers.arcgis.com/rest/services-reference/enterprise/add-features.htm Post API call.
But unable to make it work due to some issues. is there any API function in Kotlin SDK where we can communicate to table in ArcGIS using the service url. any sample code snippet will be great help
Hi,
You can use ServiceFeatureTable to load a layer service url and perform edits on it locally and finally applyEdits back to the server. Here is a sample which does edits for similar workflow, but does attachment edits. In your case, you can ignore the attachments and just work with features.
Thanks
Rama