---
title: "Edit a participant's detail"
method: PATCH
path: "/meetings/{meeting_id}/participants/{participant_id}"
tags: ["Meetings"]
---

# Edit a participant's detail

`PATCH /meetings/{meeting_id}/participants/{participant_id}`

Updates a participant's details for the given meeting and participant ID.

## Path parameters

- `meeting_id` string, uuid, required
- `participant_id` string, required

## Request body

- object
  - `name` string, nullable — (Optional) Name of the participant.
  - `picture` string, uri, nullable — (Optional) A URL to a picture to be used for the participant.
  - `preset_name` string, nullable — (Optional) Name of the preset to apply to this participant.

## Response `200`

Success response

- object
  - `success` boolean, required — Success status of the operation
  - `data` object — Represents a participant.
    - `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.
    - `token` string, required — The participant's auth token that can be used for joining a meeting from the client side.

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