List Schedules

Memuat Daftar Jadwal yang Dimiliki

get

Ambil daftar jadwal meeting Zoom (dengan dukungan filter).

Filter yang tersedia

  • tab: previous | upcoming | all

  • from, to: rentang tanggal (format YYYY-MM-DD)

  • recurring: 1 (recurring) atau 0 (non-recurring)

Query parameters
tabstring · enumOptional

Tab filter daftar jadwal.

Default: upcomingPossible values:
fromstring · dateOptional

Tanggal mulai (YYYY-MM-DD).

Example: 2025-08-24
tostring · dateOptional

Tanggal akhir (YYYY-MM-DD).

Example: 2025-09-30
recurringinteger · enumOptional

Filter recurring (1) atau non-recurring (0).

Example: 1Possible values:
Header parameters
AuthorizationstringRequiredExample: Bearer {token}
AcceptstringRequiredExample: application/json
Responses
200

Schedules retrieved successfully

application/json
get
curl -L \
  --request GET \
  --url 'https://api.rapatin.id/schedules?tab=upcoming' \
  --header 'Authorization: Bearer {token}' \
  --header 'Accept: application/json'
{
  "response": {
    "status": "success",
    "status_code": 200,
    "message": "Schedules retrieved successfully"
  },
  "data": {
    "items": [
      {
        "id": 110,
        "topic": "Weekly Team Sync",
        "passcode": "123456",
        "recurring": false,
        "start_date": "2025-08-24",
        "start_time": "14:00:00",
        "meeting_id": "81911244410",
        "occurence_id": null,
        "join_url": "https://us06web.zoom.us/j/81911244410?pwd=egGYk70ab8DqOGfaGVRdQaAvfEXLSo.1",
        "registration_url": null,
        "waiting_room": 1,
        "is_meeting_registration": false,
        "is_meeting_qna": false,
        "is_language_interpretation": false,
        "is_mute_participant_upon_entry": true,
        "is_req_permission_to_unmute_participants": false,
        "editable": true,
        "is_used": false,
        "custom_live_streaming": {
          "stream_url": null,
          "stream_key": null,
          "live_stream_page_url": null
        },
        "created_at": "2025-08-22T01:36:06.000000Z",
        "updated_at": "2025-08-22T01:36:06.000000Z",
        "product": {
          "id": 1,
          "name": "Meeting 100 Participants",
          "capacity": 100
        },
        "account": {
          "id": 13,
          "name": "Space 11"
        },
        "recurring_data": {
          "total_recurring": 0,
          "recurrence": null,
          "repeat_interval": null,
          "monthly_day": null,
          "monthly_week": null,
          "weekly_days": null,
          "end_type": null,
          "end_date": null,
          "end_after_type": null
        }
      },
      {
        "id": 111,
        "topic": "Weekly Sales Meeting",
        "passcode": "987654",
        "recurring": true,
        "start_date": "2025-08-24",
        "start_time": "09:00:00",
        "meeting_id": "89757997072",
        "occurence_id": "1756087200000",
        "join_url": "https://us06web.zoom.us/j/89757997072?pwd=dn3pRowl1qui6oD5gJtWFyegQAbyOZ.1",
        "registration_url": "https://us06web.zoom.us/meeting/register/u8mRMk3WTcCKwa81Gqvlqg",
        "waiting_room": 1,
        "is_meeting_registration": true,
        "is_meeting_qna": true,
        "is_language_interpretation": false,
        "is_mute_participant_upon_entry": false,
        "is_req_permission_to_unmute_participants": true,
        "editable": true,
        "is_used": false,
        "custom_live_streaming": {
          "stream_url": null,
          "stream_key": null,
          "live_stream_page_url": null
        },
        "created_at": "2025-08-22T01:37:01.000000Z",
        "updated_at": "2025-08-22T01:37:01.000000Z",
        "product": {
          "id": 1,
          "name": "Meeting 100 Participants",
          "capacity": 100
        },
        "account": {
          "id": 13,
          "name": "Space 11"
        },
        "recurring_data": {
          "total_recurring": 11,
          "recurrence": 2,
          "repeat_interval": 1,
          "monthly_day": null,
          "monthly_week": null,
          "weekly_days": null,
          "end_type": null,
          "end_date": "2025-09-30",
          "end_after_type": null
        },
        "occurrences": [
          {
            "id": 112,
            "occurence_id": "1756260000000",
            "start_date": "2025-08-27",
            "start_time": "09:00:00",
            "waiting_room": 1,
            "editable": true,
            "is_used": false
          },
          {
            "id": 113,
            "occurence_id": "1756692000000",
            "start_date": "2025-09-01",
            "start_time": "09:00:00",
            "waiting_room": 1,
            "editable": true,
            "is_used": false
          }
        ]
      }
    ],
    "meta": {
      "current_page": 1,
      "per_page": 15,
      "total": 2,
      "last_page": 1
    }
  }
}

Was this helpful?