---
title: "Get Inquiry By Call"
method: GET
path: "/inquiries/by-call/{call_id}"
tags: ["Inquiries"]
---

# Get Inquiry By Call

`GET /inquiries/by-call/{call_id}`

Get an inquiry by call ID.

Returns the inquiry associated with a specific call, or 404 if no inquiry exists for that call.

## Path parameters

- `call_id` string, uuid, required

## Response `200`

Successful Response

- InquiryResponse — Full inquiry record response.
  - `inquiry_id` string, uuid, required
  - `customer_id` string, uuid, required
  - `call_id` string, uuid, nullable
  - `conversation_id` string, uuid, nullable
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `phone_number` string, nullable
  - `email` string, nullable
  - `inquiry_description` string, nullable
  - `subject_line` string, nullable
  - `requires_followup` boolean, nullable
  - `followup_reasoning` string, nullable
  - `notification_emails_sent` boolean, required
  - `notification_sms_sent` boolean, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, nullable

## 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/4a81645b59f6/schema)
