How to support the $submit operation for HL7 Da Vinci PAS with Azure's FHIR service

Aaron Kiander 20 Reputation points
2023-12-01T19:19:00.2366667+00:00

The HL7 Da Vinci PAS Implementation Guide calls for the FHIR Service to support the /Claim/$submit operation. The exact wording of the requirement is:

The Claim submit operation is executed by POSTing a FHIR Bundle to the [base url]/Claim/$submit endpoint.

I added the OperationDefinition to my FHIR Service along with all dependencies. I have confirmed that the OperationDefinition is in place on the service.

When I attempt to use this operation by POSTing a PAS request bundle, I receive an error back:

HTTP/1.1 404 Not Found
Connection: close
Content-Type: application/fhir+json; charset=utf-8
Date: Fri, 01 Dec 2023 19:14:48 GMT
Server: Kestrel
X-Request-ID: 23cbd2ecbfc022366872c3c0adab84bf
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: frame-src 'self';
Strict-Transport-Security: max-age=31536000; includeSubDomains
Content-Length: 176

{
  "resourceType": "OperationOutcome",
  "id": "23cbd2ecbfc022366872c3c0adab84bf",
  "issue": [
    {
      "severity": "error",
      "code": "not-found",
      "diagnostics": "The requested route was not found."
    }
  ]
}


How can I support the /Claim/$submit operation on Azure's FHIR Service?

Azure Health Data Services
Azure Health Data Services
An Azure offering that provides a suite of purpose-built technologies for protected health information in the cloud.
148 questions
{count} votes

1 answer

Sort by: Most helpful
  1. JananiRamesh-MSFT 21,471 Reputation points
    2023-12-04T03:33:28.8466667+00:00

    @Aaron Kiander Thanks for reaching out. From your description I understand that your attempt to use $submit operation by POSTing a PAS request bundle is failing.

    I have checked this internally with our product team, and they confirmed that the $submit operation defined by implementation guide is not implemented on Api for FHIR yet. please feel free to leave your feedback at https://feedback.azure.com/d365community/forum/c2115f96-0625-ec11-b6e6-000d3a4f0858

    Do let me know if you have any queries.

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.

    0 comments No comments