---
title: "Create supervision meeting"
method: POST
path: "/api/supervision-meetings"
tags: ["supervision-meetings"]
---

# Create supervision meeting

`POST /api/supervision-meetings`

Create a supervision meeting (note). Admin can pass supervisor_id; else current user's operator is supervisor.

## Request body

- SupervisionMeetingCreateRequest — Request body for creating a supervision meeting.
  - `operator_id` string, required — Supervised operator UUID
  - `meeting_date` string, date-time, required — Meeting date/time
  - `label` string, nullable — Meeting label. Client may set only 'T congiunto PSI-NUTRI' or 'Call Extra' (or null). Sequential T{N} labels are assigned automatically on create.
  - `notes` string, nullable — Meeting notes
  - `supervisor_id` string, nullable — Owner supervisor operator UUID (admin only)
  - `covering_supervisor_id` string, nullable — Substitute supervisor operator UUID (admin only). When set, payment routes to this operator instead of the owner.

## Response `201`

Successful Response

- SupervisionMeetingResponse — Single supervision meeting (note) response.
  - `id` string, required — Meeting UUID
  - `supervisor_id` string, required — Owner supervisor operator UUID
  - `operator_id` string, required — Supervised operator UUID
  - `covering_supervisor_id` string, nullable — Substitute supervisor operator UUID when the meeting was covered by another supervisor
  - `covering_supervisor_name` string, nullable — Substitute supervisor display name when the meeting was covered
  - `label` string, nullable — Meeting label. One of T0..T99, 'T congiunto PSI-NUTRI', 'Call Extra'.
  - `meeting_date` string, date-time, required — Meeting date/time
  - `notes` string, nullable — Meeting notes
  - `created_at` string, date-time, required — Creation timestamp
  - `updated_at` string, date-time, required — Last update timestamp

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/corabea/apis/corabea-api.md) · [All operations](https://skmtc.dev/corabea/apis/corabea-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/corabea/corabea-api/revisions/13c1bce1bdc4/schema)
