Zoom Healthcare integrations

I’m exploring the new Healthcare service in Zoom.
Right now, I only see one GET API endpoint available for retrieving data.

Before I start polling this endpoint, I’d like to know if there are any webhook events or triggers available that can notify us when new notes are created so we can send them to an external service.

If webhook events aren’t available yet, is there a recommended approach for detecting and sending new notes in near real time?

Thanks in advance!

Hi @omar.delgado, yes there seems to be a webhook event called clinical_notes.note_created which will notify you when new notes are created (docs). You can listen for this event in your Zoom webhook to know when someone creates a new note and kick off the subsequent jobs

Great! I was able to get the clinical note request in test endpoint, thanks!

I noticed that the event contains the note_id field, but when I retrieve data using the GET clinical_notes/notes, note_id is not included.

Is the meeting_id the best way to identify unique records?

Thank you!!