Image Practitioner

Practitioner requests and examples

Terminology Bindings

Terminology Detail
Practitioner.identifier An identifier - identifies some entity uniquely and unambiguously.

Parameters

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

Requests

Practitioner by identifier

GET: 'https://api.practicestudio.net/patientportal/fhir/Practitioner/{Practitioner_ID}'

Example Response

Example Practitioner JSON Response:


{
  "resourceType": "Practitioner",
  "id": "10000001",
  "meta": {
    "lastUpdated": "0001-01-01T00:00:00-06:00",
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"
    ]
  },
  "identifier": [
    {
      "system": "http://hl7.org/fhir/sid/us-npi",
      "value": "1184714297"
    }
  ],
  "active": false,
  "name": [
    {
      "use": "official",
      "family": "Johnson",
      "given": [
        "Sarah"
      ],
      "suffix": [
        "MD"
      ]
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "(806) 555-1212",
      "use": "work",
      "rank": 1
    },
    {
      "system": "fax",
      "value": "(806) 555-1313",
      "use": "work",
      "rank": 2
    }
  ],
  "address": [
    {
      "text": "4112 Main Street, Amarillo, TX  79109",
      "line": [
        "MicroFour.PS.Edi.HL7.FhirR4.string"
      ],
      "city": "Amarillo",
      "state": "TX",
      "postalCode": "79109",
      "country": "US"
    }
  ],
  "gender": "male"
}