Skip to main content

Meeting Participant Report

You can use this API to get detailed participants report for your meetings.

API: https://meeting.zoho.com/api/v2/{zsoid}/participant/{meetingKey}.json 

Method: Get 

Params: 
index - Page Number(required) 
count - No.Of reports per page(required) 

OAuth Scope: ZohoMeeting.meeting.READ

Request Example

Copiedhttps://meeting.zoho.com/api/v2/1234/participant/3455656.json

Response Example

Copied{
  "participantsCount": 1,
  "participants":[
    {
      "leaveTime": 1693903887527,
      "duration": 82790,
      "role": "presenter",
      "joinTime": 1693903804737,
      "participantAvatar": "https://contacts.zoho.com/file?ID=34432&fs=thumb&t=user",
      "inAndOutTime": "02:20 PM - 02:21 PM",
      "source": "web",
      "email": "test@zoho.com",
      "memberId": "438180043542297021"
    }
  ]
}

POSSIBLE ERROR CASES

1. Invalid DC or Invalid token or Invalid token


HTTP Code: 400
HTTP Body:

Copied{
    "error": {
        "code": 2000,
        "message": "INVALID_OAUTHTOKEN"
    }
}

Resolution: Check whether the entered DC is correct and entered token is not expired.

2. Invalid meeting key

HTTP CODE : 400
HTTP Body:

Copied{
    "error": {
        "errorCode": 4000,
        "message": "The meeting key is invalid.",
        "key": "INVALID_MEETING_KEY"
    }
}

Resolution: Should enter a valid recording Id.

3. Invalid organization Id

HTTP CODE : 401
HTTP Body:

Copied{
    "error": {
        "errorCode": 3001,
        "message": "You do not have permission to access this organization account.",
        "key": "UNAUTHORIZED_USER"
    }
}

Resolution: Should enter a valid organization Id.