Journl Streamed
Talk to an expertWebsite
  • Introduction
  • Getting Started
    • Sandbox Access
    • On-Premise
    • Cloud
  • Overview
    • Why Journl Streamed?
    • Licensing & Support
    • Features
    • Solution Architecture and Usage
  • API
    • FHIR API
      • Accessing FHIR Data
      • CRUD
        • Create
        • Read
        • Update
          • Versioned Update
        • Patch
        • Delete
          • Versioned Delete
    • Batch Upsert
  • Services
    • Security & Access Control
    • FHIR Modeling, Profiles, and Standards
    • Careplan Creation
    • Analysis on Demand
      • Standard Process
      • Types of Analysis
    • Custom Resources
    • Monitoring & Maintenance
  • Storage
    • Database
      • Database schema
    • Backup and Restore
    • Indexes
  • Integrations
    • Data Ingestion and Decoupling
    • Subscriptions and Event Notifications
    • BI & Analytical tools
      • Power BI
      • Tableau
      • Jupyter Notebook
Powered by GitBook
On this page
  1. API
  2. FHIR API

Accessing FHIR Data

PreviousFHIR APINextCRUD

Last updated 11 months ago

Journl Streamed exposes FHIR data through its standard API endpoints.

A resource is a structured object that includes a type, associated data, relationships to other resources, and a set of methods for interaction. Typically, a resource is represented in formats such as JSON, XML, or YAML. More information about FHIR specifications can be found . Below are some examples of how to interact with the FHIR APIs:

Retrieve a Patient Resource: This endpoint retrieves the details of a patient resource identified by {id}.

GET {base}/fhir/Patient/{id}

Search for Observations: This endpoint searches for all observations related to a specific patient identified by {patient_id}.

GET {base}/Observation?patient={patient_id}

Create a New Condition: This endpoint creates a new condition resource for a patient.

POST /Condition
Content-Type: application/fhir+json
{
  "resourceType": "Condition",
  "patient": {
    "reference": "Patient/{id}"
  },
  "code": {
    "coding": [
      {
        "system": "http://snomed.info/sct",
        "code": "44054006",
        "display": "Diabetes mellitus type 2"
      }
    ]
  },
  "clinicalStatus": "active",
  "verificationStatus": "confirmed"
}
here