---
title: "Get Meeting By Call"
method: GET
path: "/calendars/meetings/by-call/{call_id}"
tags: ["Calendar"]
---

# Get Meeting By Call

`GET /calendars/meetings/by-call/{call_id}`

Get meeting details by call ID.

This endpoint is authenticated using user session authentication.

Returns:
    Meeting details if a meeting was booked from the specified call,
    or 404 if no meeting exists for the call.

## Path parameters

- `call_id` string, uuid, required

## Response `200`

Successful Response

- MeetingResponse — Response model for a meeting
  - `meeting_id` string, uuid, required
  - `customer_id` string, uuid, required
  - `booked_with_user_id` string, uuid, required
  - `booked_with_user_first_name` string, nullable
  - `booked_with_user_last_name` string, nullable
  - `booked_with_user_timezone` string, nullable
  - `call_id` string, uuid, nullable
  - `attendee_first_name` string, required
  - `attendee_last_name` string, required
  - `attendee_phone_number` string, required
  - `attendee_email` string, nullable, required
  - `attendee_timezone` string, required
  - `case_id` string, uuid, nullable, required
  - `case_title` string, nullable
  - `case_description` string, nullable
  - `start_time` string, required
  - `duration_minutes` integer, required
  - `created_at` string, required
  - `is_test_meeting` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/b642b91e0a5c/schema)
