Change the Zoom account email that is used to fetch meetings and webinars

This snippet is useful when Zoom account is purchased by one account, but meetings/webinars are hosted in a sub-account.

Add the following code snippet towards the end of your child themes functions.php

add_filter( 'automator_zoom_api_call', function( $params ) {
	$params['body']['user'] = 'example@example.com'; // <<< Replace with the correct email
	return $params;
} );