When publishing a feature service from a geodatabase, and using the ArcGIS arcis api for python, I can update my capabilities from (default) "Query" to "Query, Sync" with
update_dict2 = {"syncEnabled": True}
flc.manager.update_definition(update_dict2)
where flc is my feature layer collection.
However, I have not been able to update to "Create,Delete,Query,Update,Editing,Sync" except through the web application.
Much like I did not change the "Capabilities" values directly to allow for Sync, is there another place I add Create, Delete, and Editing? In the front end I just click the check box "Enable Editing"
Thanks in advance.