List Reports
Mengambil semua daftar report rapat yang telah digunakan.
Field per item yang dikembalikan:
participants_count
: jumlah peserta unik yang bergabung ke rapat.duration
: durasi rapat dalam turunan menit.start_time
: waktu dimulainya sesi rapat.end_time
: waktu berakhir sesi rapat
Header parameters
AuthorizationstringRequiredExample:
Bearer {token}
AcceptstringRequiredExample:
application/json
Responses
200
Record fetched successfully
application/json
401
Unauthorized (token tidak valid)
422
Parameter tidak valid
get
/reportsGET /reports HTTP/1.1
Host: api.rapatin.id
Authorization: Bearer {token}
Accept: application/json
{
"response": {
"status": "success",
"status_code": 200,
"message": "Record fetched successfully"
},
"data": {
"items": [
{
"id": 3927,
"uuid": "fpA+362HRMqqWGNWsryUxQ==",
"topic": "Training Prakerja",
"meeting_id": "84578539281",
"participants_count": 313,
"duration": 480,
"start_time": "2025-09-24T01:28:48Z",
"end_time": "2025-09-24T09:35:49Z"
},
{
"id": 3926,
"uuid": "p0w2p2b7J2yq2YFJ8x3g5A==",
"topic": "Webinar FYP Content From Research",
"meeting_id": "83347264221",
"participants_count": 128,
"duration": 400,
"start_time": "2025-09-20T06:00:00Z",
"end_time": "2025-09-20T06:58:00Z"
},
{
"id": 3925,
"uuid": "9kKc9c1LwO1mZ1Wm2l3s1Q==",
"topic": "Kelas EasyEDA",
"meeting_id": "88913355854",
"participants_count": 64,
"duration": 180,
"start_time": "2025-09-24T02:05:00Z",
"end_time": "2025-09-24T03:37:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 3,
"last_page": 1
}
}
}
Was this helpful?