Tenet Healthcare · Example Payload

Tenet Healthcare Get Patient Example

HealthcareHospitalsAmbulatory Surgery CentersRevenue Cycle ManagementFortune 500

Tenet Healthcare Get Patient Example is an example object payload from Tenet Healthcare, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.tenethealth.com/fhir/r4/Patient/patient-123456",
    "headers": {
      "Authorization": "Bearer {smart_on_fhir_token}",
      "Accept": "application/fhir+json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/fhir+json"
    },
    "body": {
      "resourceType": "Patient",
      "id": "patient-123456",
      "meta": {
        "versionId": "1",
        "lastUpdated": "2026-05-03T09:00:00Z",
        "source": "#tenet-dallas-medical"
      },
      "identifier": [
        {
          "use": "official",
          "type": {
            "coding": [
              {
                "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                "code": "MR",
                "display": "Medical record number"
              }
            ]
          },
          "system": "https://tenethealth.com/mrn",
          "value": "MRN-0045678"
        }
      ],
      "active": true,
      "name": [
        {
          "use": "official",
          "family": "Smith",
          "given": ["John", "William"],
          "prefix": ["Mr."]
        }
      ],
      "telecom": [
        {
          "system": "phone",
          "value": "555-234-5678",
          "use": "home"
        },
        {
          "system": "email",
          "value": "john.smith@example.com",
          "use": "home"
        }
      ],
      "gender": "male",
      "birthDate": "1975-04-15",
      "address": [
        {
          "use": "home",
          "line": ["123 Oak Street"],
          "city": "Dallas",
          "state": "TX",
          "postalCode": "75201",
          "country": "US"
        }
      ],
      "managingOrganization": {
        "reference": "Organization/tenet-dallas-medical-center",
        "display": "Dallas Medical Center"
      }
    }
  }
}