Delete
Description of how to delete a resource using our FHIR API.
Last updated
Description of how to delete a resource using our FHIR API.
Last updated
DELETE
{base}/fhir/{type}
Below is an example of how to use a DELETE
request to remove a resource. A complete list of resources can be found by visiting the resource specifications .
Upon successful deletion of a resource, the server responds with a 200 OK status. If you attempt to delete a resource that has already been deleted, the server will respond with a 204 No Content status, in accordance with the FHIR specification.
Request
DELETE
{base}/fhir/Patient/{id}
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response