Image Organization

Organization requests and examples

Terminology Bindings

Terminology Detail
Organization.identifier An identifier - identifies some entity uniquely and unambiguously. Identifier can be used for to retrieve clinical data.
Organization.type The kind(s) of organization that this is.

Parameters

Parameter Is Required Description
Identifier Yes The logical resource ID associated with the resource.

Requests

Patient by _id, identifier, name, birthdate, gender

GET: 'https://api.practicestudio.net/patientportal/fhir/Organization/{Organization_ID}'

Example Response

Example Patient JSON Response:


{
  "resourceType": "Organization",
  "id": "10000001",
  "meta": {
    "lastUpdated": "0001-01-01T00:00:00-06:00",
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization"
    ]
  },
  "identifier": [
    {
      "system": "http://hl7.org/fhir/sid/us-npi",
      "value": "1508051293"
    }
  ],
  "active": false,
  "type": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/organization-type",
          "code": "prov",
          "display": "Healthcare Provider",
          "userSelected": false
        }
      ]
    }
  ],
  "name": "Baxter Clinic",
  "telecom": [
    {
      "system": "phone",
      "value": "(806) 463-7007",
      "use": "work",
      "rank": 1
    },
    {
      "system": "fax",
      "value": "(806) 463-7016",
      "use": "work",
      "rank": 2
    },
    {
      "system": "other",
      "value": "(806) 555-2223 x200",
      "use": "work",
      "rank": 3
    }
  ],
  "address": [
    {
      "text": "176 Messing Dr, Amarillo, TX  79109-1000",
      "line": [
        "MicroFour.PS.Edi.HL7.FhirR4.string"
      ],
      "city": "Amarillo",
      "state": "TX",
      "postalCode": "79109-1000",
      "country": "US"
    }
  ]
}