Help Needed: Accessing Zoom Transcript in Apex

Hi Team,

I am trying to access the transcript from my Apex script but am not receiving the below response.

When calling the transcript URL, I receive:
[Status=Found, StatusCode=302]

I have implemented redirection logic in Apex as follows:

if (res.getStatusCode() == 302) {
System.debug(‘>>> Inside 302 Block:’);
String locationHeader = res.getHeader(‘Location’);
System.debug('New Location >>> ’ + locationHeader);
}

However, the Location header is always null.

Could you please assist in understanding how to properly retrieve the transcript?

Hi @Dinesh
Thanks for reaching out to us.
Would you be able to share with me what endpoint are you trying to call?

Hopping on this, I am having the same issue but I am trying to access a zoom audio recording. This is the endpoint I am trying to call: get/phone/recording/download/{fileId}

Also asked in this forum: Unable to get Zoom audio recording - #2 by elisa.zoom

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.