---
title: "Create Case"
method: POST
path: "/cases/"
tags: ["Cases"]
---

# Create Case

`POST /cases/`

Create a new case.

Returns:
- The created case object

## Request body

- CreateCaseRequest — Request to create a new case record.
  - `title` string, required — Title of the case
  - `description` string, required — 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 `201`

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)
