> ## Documentation Index
> Fetch the complete documentation index at: https://docs.medera.info/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /api/co-therapy-sessions

> Create a co-therapy session

```text theme={"system"}

POST /api/co-therapy-sessions

```

### Request body

```json theme={"system"}
{
  "patientId": "pat_abc",
  "providers": ["prv_xyz"],
  "scheduledStart": "2026-05-28T15:00:00Z",
  "scheduledDurationMinutes": 50,
  "videoPlatform": "telehealth",
  "recordingEnabled": true,
  "deploymentId": "dep_abc",
  "publishedWorkflowId": "wf_published_..."
}

```

Lifecycle endpoints:

```text theme={"system"}

POST /api/co-therapy-sessions/{id}/start       # send invitations
POST /api/co-therapy-sessions/{id}/join        # record participant join
POST /api/co-therapy-sessions/{id}/leave       # record participant leave
POST /api/co-therapy-sessions/{id}/transition  # state transition

```
