Show Participants Report

Mengambil Daftar Partisipan yang Bergabung ke Ruang Rapat

get

Ambil daftar peserta untuk sebuah sesi rapat.

  • Tanpa uuid (query) → kembalikan sesi terakhir untuk meeting_id tersebut.

  • Dengan uuid (query) → kembalikan data untuk sesi spesifik itu.

Path parameters
meeting_idstringRequired

Meeting ID Zoom

Example: 84439309192
Query parameters
uuidstringOptional

UUID sesi tertentu

Example: StJnC3C6TEKQ37kgqKJMWqQ==
Header parameters
AuthorizationstringRequiredExample: Bearer {token}
AcceptstringRequiredExample: application/json
Responses
200

Record fetched successfully

application/json
get
/reports/participants/{meeting_id}
GET /reports/participants/{meeting_id} HTTP/1.1
Host: api.rapatin.id
Authorization: Bearer {token}
Accept: application/json
{
  "response": {
    "status": "success",
    "status_code": 200,
    "message": "Record fetched successfully"
  },
  "data": {
    "uuid": "StJnC3C6TEKQ37kgqKJMWqQ==",
    "meeting_id": "84439309192",
    "topic": "Pembekalan Wisuda Universitas Pekalongan Periode September",
    "participant_count": 3,
    "participants": [
      {
        "name": "UNIKAL",
        "user_id": "16778240",
        "user_email": "[email protected]",
        "duration": 276,
        "join_time": "2025-09-24T07:46:41Z",
        "leave_time": "2025-09-24T12:22:21Z"
      },
      {
        "name": "Nuriya Idah Safitri",
        "user_id": "16781342",
        "user_email": "[email protected]",
        "duration": 21,
        "join_time": "2025-09-24T08:15:02Z",
        "leave_time": "2025-09-24T08:35:02Z"
      },
      {
        "name": "Sivana Aprilia",
        "user_id": "16783236",
        "user_email": "[email protected]",
        "duration": 27,
        "join_time": "2025-09-24T08:14:49Z",
        "leave_time": "2025-09-24T08:15:17Z"
      }
    ]
  }
}

Was this helpful?