---
title: "Update Case"
method: PATCH
path: "/cases/{case_id}"
tags: ["Cases"]
---

# Update Case

`PATCH /cases/{case_id}`

Update an existing case.

All fields are optional. Only provided fields will be updated.

## Path parameters

- `case_id` string, uuid, required

## Request body

- UpdateCaseRequest — Request to update an existing case record.
  - `title` string, nullable — Title of the case
  - `description` string, nullable — Description of the case
  - `staff_group_id` string, uuid, nullable — ID of the staff group assigned to this case
  - `meeting_booking_enabled` boolean, nullable — Whether meeting booking is enabled for this case

## Response `200`

Successful Response

- CaseResponse — Full case record response.
  - `case_id` string, uuid, required
  - `customer_id` string, uuid, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `title` string, required
  - `description` string, required
  - `staff_group_id` string, uuid, nullable, required
  - `created_by` string, uuid, nullable, required
  - `updated_by` string, uuid, nullable, required
  - `meeting_booking_enabled` boolean, required

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