---
title: "Fetch all meetings for an organization"
method: GET
path: "/meetings"
tags: ["Meetings"]
---

# Fetch all meetings for an organization

`GET /meetings`

Returns all meetings for the given organization ID.

## Query parameters

- `page_no` number
- `per_page` number
- `start_time` string, date-time
- `end_time` string, date-time
- `search` string

## Response `200`

Success response

- object
  - `success` boolean, required
  - `data` Meeting[], required
    - `id` string, uuid, required — ID of the meeting.
    - `title` string — Title of the meeting.
    - `preferred_region` 'ap-south-1' | 'ap-southeast-1' | 'us-east-1' | 'eu-central-1' | 'null', nullable — The region in which this meeting should be created.
    - `created_at` string, date-time, required — Timestamp the object was created at. The time is returned in ISO format.
    - `record_on_start` boolean — Specifies if the meeting should start getting recorded as soon as someone joins the meeting.
    - `updated_at` string, date-time, required — Timestamp the object was updated at. The time is returned in ISO format.
    - `live_stream_on_start` boolean — Specifies if the meeting should start getting livestreamed on start.
    - `persist_chat` boolean — Specifies if Chat within a meeting should persist for a week.
    - `summarize_on_end` boolean — Automatically generate summary of meetings using transcripts. Requires Transcriptions to be enabled, and can be retrieved via Webhooks or summary API.
    - `status` 'ACTIVE' | 'INACTIVE' — Whether the meeting is `ACTIVE` or `INACTIVE`. Users will not be able to join an `INACTIVE` meeting.
  - `paging` object, required
    - `total_count` number, required
    - `start_offset` number, required
    - `end_offset` number, required

---

[API](https://skmtc.net/dyte-io/apis/dyte-rest-apis.md) · [All operations](https://skmtc.net/dyte-io/apis/dyte-rest-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dyte-io/dyte-rest-apis/revisions/f62d3edd92ae/schema)
