Hard Delete #2063
chrisparkeronline
started this conversation in
General
Hard Delete
#2063
Replies: 1 comment 1 reply
-
If this is the parameter created by the Azure Api for FHIR to be able to delete the resource plus its complete history, you can use the FhirClient's Delete method like this: client.Delete("{resourcetype}/{id}?hardDelete=true"); Or, for a conditional delete, you can add to the SearchParams, and use that: var sp = new SearchParams().Add("identifier", "12345").Add("hardDelete", "true");
client.Delete("Patient", sp); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Using firely, how would one use the harddelete=true parameter?
Beta Was this translation helpful? Give feedback.
All reactions