Most FHIR servers won't completely remove a FHIR resource from the database when you do a DELETE.
What I'm wondering is this: if I retreive the latest version of a deleted resource using it _history
for example: GET Patient/1/_history/2
and want to "restore" it. What's the best way to do that?
Is my only option to create a copy of the deleted patient by removing the ID and doing POST
to /Patient
or... is there some way to restore the deleted patient and keep its original ID?