Cannot delete configuration using CURL on AEM 6.5
I'm trying to run a CRUL command to delete a configuration
The PID is: com.myproject.aem.core.services.impl.ApiSettingsService
Tried these but not working:
curl -v -u admin:admin http://localhost:4502/system/console/configMgr/com.myproject.aem.core.services.impl.ApiSettingsService -d "action=DELETE"
curl -v -u admin:admin -X DELETE http://localhost:4502/system/console/configMgr/com.myproject.aem.core.services.impl.ApiSettingsService
curl -u admin:admin -F":operation=delete" -F":applyTo=/system/console/configMgr/com.myproject.aem.core.services.impl.ApiSettingsService" http://localhost:4502
curl -u admin:admin -F":operation=delete" http://localhost:4502/system/console/configMgr/com.myproject.aem.core.services.impl.ApiSettingsService
Using "DELETE" shows "Method not allowed. Checked "Apache Sling Referrer Filter" and "DELETE" is not listed.
What am i missing?
