athenahealth · Example Payload

Athenahealth Subscription Notification Example

EHRElectronic Health RecordsHealthcareHL7FHIRInteroperabilityPractice ManagementRevenue Cycle ManagementUSCDICures ActSMART on FHIRCDS HooksCloud EHR

Athenahealth Subscription Notification Example is an example object payload from athenahealth, 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": "POST",
    "url": "https://subscriber.example.com/athena-webhook",
    "headers": {
      "Content-Type": "application/fhir+json",
      "X-athena-Subscription-Id": "sub-789"
    },
    "body": {
      "resourceType": "Bundle",
      "type": "history",
      "timestamp": "2026-05-25T14:02:17Z",
      "entry": [
        {
          "fullUrl": "https://api.platform.athenahealth.com/fhir/r4/Patient/a-12345",
          "resource": {"resourceType": "Patient", "id": "a-12345"}
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "note": "Subscriber must ACK with a 2xx within 2 seconds."
  }
}