but when I checked the example of recording ended event, it does have transcript as well.
Error
The full error message or issue you are running into.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
Knowing the endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.
Which Endpoint/s?
Knowing the API endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.
How To Reproduce (If applicable)
Steps to reproduce the behavior:
Request URL / Headers (without credentials) / Body
See error
Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
The recording.completed webhook only fires after the meeting recording related files (m4a and mp4) have completed processing. Only once these are available is zoom able to process transcripts, which it later fires off the recording.transcript_completed webhook.
It’s important to enable this webhook from the Zoom UI when managing your webhook app.
Also, recording.transcript_completed can come back multiple times. For example:
If the recording was stopped, and started again, within a single session, you will get two mp4 recording files from the recording.completed event, but the recording.transcript_completed event will fire multiple times, the first time only containing the transcript file for the first recording file, and then again later on for transcripts pertaining to both recording files.
This was really confusing when I was integrating as I expected the same kind of webhook firing for transcripts as I was getting for recordings. Obviously, not the case.