We're using 5.5+ of HAPI, and see that there is a config option for `delete_expunge_enabled`. We've enabled it. We've also ensured `expunge_enabled: true` and `allow_multiple_delete: true`.
Despite that, though, we're not able to run $delete-expunge. For example;
POST /fhir/$delete-expunge
{
"resourceType": "Parameters",
...
}
We're getting the following error:
```
{
"resourceType": "OperationOutcome",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h1>Operation Outcome</h1><table border=\"0\"><tr><td style=\"font-weight: bold;\">ERROR</td><td>[]</td><td><pre>Invalid request: The FHIR endpoint on this server does not know how to handle POST operation[$delete-expunge] with parameters [[]]</pre></td>\n\t\t\t</tr>\n\t\t</table>\n\t</div>" },
"issue": [
{
"severity": "error",
"code": "not-supported",
"diagnostics": "Invalid request: The FHIR endpoint on this server does not know how to handle POST operation[$delete-expunge] with parameters [[]]"
}
]
}
```
Can someone help? Seems like we've enabled everything necessary for this to function... but it's not working.