---
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

## Changes

- **2025-04-04** (v2) `cb67ff854c71` — 1 warning, 1 info
  - added the new `undefined` enum value to the `allOf[subschema #2]/data/items/preferred_region` response property for the response status `200`
  - the endpoint scheme security `Authorization` was added to the API
- **2025-04-02** (v2) `68b9e665bfcc` — 2 info
  - the endpoint scheme security `Authorization` was removed from the API
  - removed the `undefined` enum value from the `allOf[subschema #2]/data/items/preferred_region` response property for the response status `200`
- **2024-11-19** (v2) `d8c5d90e84ac` — 1 warning, 1 info
  - added the new `undefined` enum value to the `allOf[subschema #2]/data/items/preferred_region` response property for the response status `200`
  - the endpoint scheme security `Authorization` was added to the API
- **2024-04-12** (v2) `c5efa33b7ed1` — 1 info
  - added the optional property `allOf[subschema #2]/data/items/summarize_on_end` to the response with the `200` status
- **2024-04-05** (v2) `3294a1154501` — 1 info
  - added the optional property `allOf[subschema #2]/data/items/persist_chat` to the response with the `200` status

[Change history](https://skmtc.dev/dyte-io/apis/dyte-rest-apis/changes/meetings/get.md)

---

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