Getting attendances emails

Description
I am trying to get attendance using /past_meetings/{meetingId}/participants API, But I always get user_email as an empty string for all users. I know that the user should be part of the host’s account.
But what if the user is not part of the host’s account and I need to get it.

Which Web Meeting SDK version?
Knowing the version can help us to identify your issue faster. [2.3.5]

Meeting SDK Code Snippets
this.zoomClient.join({
sdkKey: this.apiKey,
signature: resp.signature,
meetingNumber: this.meetingSetting?.meeting_id,
password: this.meetingSetting?.encrypted_password,
userEmail: profile.email,
userName: ${profile.first_name} ${profile.last_name},
success: (successResult) => {

                },
                error: (error) => {
                    console.log(error);
                },
            });

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