---
title: "Retrieve a meeting"
method: GET
path: "/meetings/{id}"
tags: ["Meetings"]
---

# Retrieve a meeting

`GET /meetings/{id}`

Retrieves the meeting with the specified ID.

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved the meeting.

- MeetingDto
  - `id` string, required
  - `title` string, required
  - `provider` 'googleMeet' | 'zoom' | 'microsoftTeams' | 'audioFile' | 'null', nullable, required
  - `startTime` string, date-time, required
  - `endTime` string, date-time, required
  - `description` string, nullable, required
  - `location` string, nullable, required
  - `isAllDay` boolean, required
  - `showAs` 'FREE' | 'TENTATIVE' | 'BUSY' | 'OUT_OF_OFFICE' | 'WORKING_ELSEWHERE' | 'UNKNOWN', required
  - `isRecurringSeries` boolean, required
  - `hasBot` boolean, required
  - `onlineJoinUrl` string, nullable, required
  - `participants` MeetingListParticipantDto[], required
    - `name` string, nullable, required
    - `email` string, required
  - `transcripts` IdDto[], required
    - `id` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized - invalid or missing authentication
- `404` — Meeting not found
- `500` — Error response

---

[API](https://skmtc.net/spott/apis/spott-webhooks.md) · [All operations](https://skmtc.net/spott/apis/spott-webhooks/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spott/spott-webhooks/versions/ad1f8c51cf0a/schema)
