Zoom integration "SAM - Refresh Zoom Events" job fails when user is deleted from zoom portal.DescriptionZoom integration "SAM - Refresh Zoom Events" job fails when user is deleted from zoom portal.Steps to Reproduce Navigate to zoom portal and delete a userNavigate to “Direct Integration Profiles”, under the “SaaS License” application menuOnce "Direct Integration Profiles" load, click on “Zoom Subscription”Click on the “Scheduled Jobs” related listClick on the "SAM - Refresh Zoom Events"Click on "Execute Now"Job fails with error: The REST API call failed with status code: 404 Alternatively: Navigate to sys.scrits.doRun following script var gr = new GlideRecord('sam_saas_sysauto_script'); if(gr.get('8b18ce31db3ee8905c87fbf4e2961955')){ new global.SAMSaasIntegrationUtils().processScheduledJob(gr, 'downloadEvents'); } Following error like so returned:*** Script: Method failed: (/v2/report/users/thisPartWillDependOnUser/meetings) with code: 404: no thrown error sn_sam_saas_int (SAMSaasZoomIntegration): SAMSaasZoomIntegration.downloadEvents: SAMSaasRestClientError: The REST API call failed with status code: 404 WorkaroundNavigate to https://instanceName.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=cbcb036567522300cdfacbb35685ef74Add a try catch to function _getEvents, like so: _getEvents: function (apiClient, userId, startTime, endTime, nextPageToken) { var response; var headers = null; var body = null; var queryStringParameters = { from: startTime, to: endTime, page_size: this.PAGE_SIZE, next_page_token: nextPageToken, }; try{ response = apiClient.httpHandlePage( 'GET', this.baseUrl + this.ZOOM_GET_EVENTS_URL.replace('{userId}', userId), headers, body, queryStringParameters ); if (response.meetings.length > 0) { return response; } } catch(e){ return null; } return null;}, Related Problem: PRB1489329