0

I created an FHIR server using the HAPI FHIR libraries.

I can now send JSON FHIR objects for a single Patient Resource.

Ex.

baseurl/patient/123456

Now I have to send multiple Patient Resources.

Ex

baseurl/patient/clinic_id
  1. Can I Use the FHIR bundle resource or a simple JSON array of Patient Resources?

  2. Does HAPI FHIR supports sending multiple Patient Resources as a JSON

Buddhika Ariyaratne
  • 2,339
  • 6
  • 51
  • 88

1 Answers1

1

HAPI would support using Bundle. A simple JSON array would not be FHIR conformant.

Lloyd McKenzie
  • 6,345
  • 1
  • 13
  • 10
  • 1
    In addition to that, please read the http://hl7.org/fhir/http.html page to make your server conform to the FHIR RESTful API. – Mirjam Baltus Oct 22 '22 at 07:11