---
title: "Fetch all participants of a meeting"
method: GET
path: "/meetings/{meeting_id}/participants"
tags: ["Meetings"]
---

# Fetch all participants of a meeting

`GET /meetings/{meeting_id}/participants`

Returns all participants detail for the given meeting ID.

## Path parameters

- `meeting_id` string, uuid, required

## Query parameters

- `page_no` number
- `per_page` number

## Response `200`

Success response

- object
  - `success` boolean, required
  - `data` Participant[], required
    - `id` string, uuid, required — ID of the participant.
    - `name` string, nullable — Name of the participant.
    - `picture` string, uri, nullable — URL to a picture of the participant.
    - `custom_participant_id` string, required — A unique participant ID generated by the client.
    - `preset_name` string, required — Preset applied to the participant.
    - `created_at` string, date-time, required — When this object was created. The time is returned in ISO format.
    - `updated_at` string, date-time, required — When this object was updated. The time is returned in ISO format.
  - `paging` object, required
    - `total_count` number, required
    - `start_offset` number, required
    - `end_offset` number, required

## Other responses

- `500` — Failure response

---

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