AmeriHealth Caritas · Example Payload

Amerihealth Caritas Patient Read Example

HealthcareHealth InsuranceManaged CareMedicaidMedicareDual EligibleCHIPLTSSBehavioral HealthPharmacy BenefitsInteroperabilityFHIRCMSSMART On FHIRPatient AccessProvider Directory

Amerihealth Caritas Patient Read Example is an example object payload from AmeriHealth Caritas, with 11 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypeidmetaidentifieractivenametelecomgenderbirthDateaddresscommunication

Example Payload

Raw ↑
{
  "resourceType": "Patient",
  "id": "ahc-member-example",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2026-05-23T15:00:00Z",
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
    ]
  },
  "identifier": [
    {
      "use": "official",
      "system": "urn:oid:2.16.840.1.113883.4.642.40.1",
      "value": "AHC-DC-987654321"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Sample",
      "given": ["Jane", "Q"]
    }
  ],
  "telecom": [
    { "system": "phone", "value": "+1-202-555-0123", "use": "mobile" },
    { "system": "email", "value": "jane.sample@example.org" }
  ],
  "gender": "female",
  "birthDate": "1988-04-12",
  "address": [
    {
      "use": "home",
      "line": ["100 Member Lane"],
      "city": "Washington",
      "state": "DC",
      "postalCode": "20001",
      "country": "US"
    }
  ],
  "communication": [
    {
      "language": {
        "coding": [
          { "system": "urn:ietf:bcp:47", "code": "en", "display": "English" }
        ]
      },
      "preferred": true
    }
  ]
}