Is it possible to stop or start meeting recording in running

Is it possible to manipulate the ongoing meeting? I want to stop or start the recording in ongoing meeting beause I want to record only for specific duration not whole the meeting.

Via the API or the Zoom Client?

Hi @itinfra,

It’s not possible to start/stop recording within an ongoing meeting as our APIs are only for pre or post meeting actions. You could possibly be able to do this via our SDKs.

How can we do it in webClient SDK?

I do not see any reference to “recording” in the Web SDK’s Reference Docs. I believe you would have to set the auto_recording property on the REST API POST Request to Create the Meeting. Setting this value to either local or cloud will enable the meeting to automatically start recording when the meeting begins, but you cannot START/STOP recording programmatically using the REST API, nor is this operation supported in the Web SDK. Using the Web SDK, you can show the Recording UI using the following code (“show” property defaults to true):

ZoomMtg.showRecordFunction({
	show: false 
 });

Start/stop a recording within an ongoing meeting with our APIs:

Use in-meeting cloud recording controls