I see this has been discussed previously (here:Retrieve just deleted document) but I am having some trouble understanding.
Given I have a database named "test" running on IP address 127.0.0.1:5984, and a document with the ID "xyz123":
Get all the revisions of the deleted document with the following request:
$db/$id?revs=true&open_revs=all
Where $db
is your CouchDB database name and $id
is your deleted document id.
Does this mean:
GET http://127.0.0.1:5984/test/"xyz123"?revs=true&open_revs=all ??
I am not sure of the correct syntax for submitting "$id
".