v1

latestOpenAPI 3.0.0Apache 2.02026-07-246175132.0 KB
FHIR

Retrieve the status of the most recent query run on a Patient.

get/R4/Patient/{patient_id}/$query

Path parameters

patient_idstring required

Patient ID

Response

OK

birthDatestring required

The patient's date of birth, must be of the format YYYY-MM-DD.

genderstring required

The patient's gender, must be either FEMALE or MALE.

idstring

The patient's FHIR resource ID. This field will be ignored if provided in create requests and an ID will be provided in the response.

resourceTypestring required

The type of resource being provided.

Example response

{
  "address": [
    {
      "city": "Brooklyn",
      "line": [
        "999 Dev Drive"
      ],
      "postalCode": "11111",
      "state": "New York"
    }
  ],
  "birthDate": "01-23-1900",
  "gender": "FEMALE",
  "id": "d80538f5-203a-4a1e-9b41-2919e174f19b",
  "identifier": [
    {
      "type": {
        "text": "SSN"
      },
      "value": "123-45-6789"
    }
  ],
  "name": [
    {
      "family": "Quark",
      "given": [
        "Kam"
      ]
    }
  ],
  "resourceType": "Patient",
  "telecom": [
    {
      "system": "PHONE",
      "value": "123-456-7890"
    }
  ]
}