Tenet Healthcare · Example Payload

Tenet Healthcare List Appointments Example

HealthcareHospitalsAmbulatory Surgery CentersRevenue Cycle ManagementFortune 500

Tenet Healthcare List Appointments 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/Appointment",
    "headers": {
      "Authorization": "Bearer {smart_on_fhir_token}",
      "Accept": "application/fhir+json"
    },
    "queryParameters": {
      "status": "booked",
      "date": "ge2026-05-01"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/fhir+json"
    },
    "body": {
      "resourceType": "Bundle",
      "type": "searchset",
      "total": 2,
      "link": [
        {
          "relation": "self",
          "url": "https://api.tenethealth.com/fhir/r4/Patient/patient-123456/Appointment?status=booked"
        }
      ],
      "entry": [
        {
          "fullUrl": "https://api.tenethealth.com/fhir/r4/Appointment/appt-789012",
          "resource": {
            "resourceType": "Appointment",
            "id": "appt-789012",
            "status": "booked",
            "appointmentType": {
              "coding": [
                {
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0276",
                  "code": "FOLLOWUP",
                  "display": "Follow-up Visit"
                }
              ]
            },
            "specialty": [
              {
                "coding": [
                  {
                    "system": "http://snomed.info/sct",
                    "code": "394579002",
                    "display": "Cardiology"
                  }
                ]
              }
            ],
            "start": "2026-05-15T14:00:00Z",
            "end": "2026-05-15T14:30:00Z",
            "minutesDuration": 30,
            "participant": [
              {
                "actor": {
                  "reference": "Patient/patient-123456",
                  "display": "John Smith"
                },
                "status": "accepted"
              },
              {
                "actor": {
                  "reference": "Practitioner/dr-jones-001",
                  "display": "Dr. Sarah Jones, MD"
                },
                "status": "accepted"
              },
              {
                "actor": {
                  "reference": "Location/dallas-medical-cardiology-suite-3",
                  "display": "Dallas Medical Center - Cardiology Suite 3"
                },
                "status": "accepted"
              }
            ]
          }
        }
      ]
    }
  }
}