UnitedHealthcare · Example Payload

Interoperability Fhir Patient Example

Health InsuranceHealthcareFHIRClaimsEligibility

Interoperability Fhir Patient Example is an example object payload from UnitedHealthcare, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypeididentifiernamebirthDategenderaddresstelecom

Example Payload

Raw ↑
{
  "resourceType": "Patient",
  "id": "uhc-patient-987654321",
  "identifier": [
    {
      "system": "https://api.uhc.com/fhir/R4/member-id",
      "value": "987654321"
    },
    {
      "system": "http://hl7.org/fhir/sid/us-ssn",
      "value": "***-**-6789"
    }
  ],
  "name": [
    {
      "use": "official",
      "family": "Smith",
      "given": [
        "Jane",
        "Marie"
      ]
    }
  ],
  "birthDate": "1985-06-22",
  "gender": "female",
  "address": [
    {
      "line": [
        "5678 Oak Avenue",
        "Apt 12"
      ],
      "city": "Eden Prairie",
      "state": "MN",
      "postalCode": "55344"
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "952-555-0200",
      "use": "home"
    },
    {
      "system": "email",
      "value": "jsmith@email.com",
      "use": "home"
    }
  ]
}