When Host denies Recording Permission then no event is fired

Hi @chunsiong.zoom i am working on zoom meeting linux bot and i am facing an issue, that when host denies recording permission then at that particular time no specific event is fired, do you know of such event?

@swatantra12singh what SDK are you using?

On Linux there is an event called onRecordPrivilegeChanged

/// \brief Callback event that the recording authority changes.
/// \param bCanRec TRUE indicates to enable to record.
void MeetingRecordingCtrlEventListener::onRecordPrivilegeChanged(bool bCanRec) {

	if (bCanRec) {
	
	}
}

@chunsiong.zoom I will try thanks