Medplum · Example Payload

Medplum Subscription Webhook Example

HealthcareFHIROpen SourceDeveloper PlatformHIPAASMART on FHIRClinicalInteroperability

Medplum Subscription Webhook Example is an example object payload from Medplum, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypestatusreasoncriteriachannelend

Example Payload

Raw ↑
{
  "resourceType": "Subscription",
  "status": "active",
  "reason": "Notify external system on new Observation",
  "criteria": "Observation?status=final",
  "channel": {
    "type": "rest-hook",
    "endpoint": "https://example.org/medplum/webhook",
    "payload": "application/fhir+json",
    "header": [
      "Authorization: Bearer REDACTED"
    ]
  },
  "end": "2027-01-01T00:00:00Z"
}