Skip to main content

Pathway clinical report webhook events

Summary

New webhook event types are available when clinical reports are linked to or removed from a clinical pathway.

New event types

  • pathway.clinicalReport.assigned
  • pathway.clinicalReport.unassigned

See the Pathway events reference page for payload identifiers.

Migration

Subscribe to the new event type strings when creating or updating a webhook subscription. No changes are required for existing subscriptions unless you want to receive these events.

mutation CreateWebhook {
createWebhook(
input: {
label: "Pathway clinical report integration"
url: "https://your-app.com/webhooks/semble"
eventTypes: [
pathway.clinicalReport.assigned
pathway.clinicalReport.unassigned
]
}
) {
data {
id
eventTypes
}
error
}
}