Bulk Export using Get Operation

get

/oracle-fhir-server/fhir/$export

Export Patient data from a FHIR server.

Request

Query Parameters
  • Specifies the output encoding style that should be used. Currently only application/fhir+ndjson is supported.
    Example:
    application/fhir+ndjson
  • Only resources that were last updated on or after the given time will be included. If this parameter is absent only resources created or updated in the past 24 hours will be exported.
    Example:
    2019-10-25T11:01:45.660-04:00
  • Specifies a comma-separated list of resource types to include.
    Example:
    Patient, Observation
  • Specifies a search URL that can be used to narrow the scope of the export. To support multiple typeFilters, separate them by a comma.
    Example:
    Patient?identifier=foo,Observation?status=final
Header Parameters
  • Specifies the Prefer header parameter value to respond-async.
    Example:
    Prefer:respond-async

There's no request body for this operation.

Back to Top

Response

202 Response

Accepted
Headers
  • Export Job poll status URI
    Example:
    http://localhost:9001/oracle-fhir-server/fhir/$export-poll-status?_jobId=6d381bda-3fc3-48dc-8e47-f70f087a52ed
Back to Top