I need to remove a replication document from the replicator db from couchdb, as mentioned by their documents. However I didn't find any sample curl used to delete the replication document. I have tried:
curl -vX DELETE -H "Content-type:application/json" http://localhost:5984/_replicator/33e6ca194de0f30420d15ecfea8b2f21
But the result is:
{"error":"not_found","reason":"missing"}
* Connection #0 to host localhost left intact
* Closing connection #0
What would be the proper curl syntax for deleting the replication document? Thanks in advance.