# POST /api/v1/advisory-firms/{firm_id}/cleanup-sessions

> Start a historical cleanup session

- **Tag:** intercompany-cleanup
- **Operation ID:** `create_cleanup_session_api_v1_advisory_firms__firm_id__cleanup_sessions_post`

## Description

Creates a cleanup session over the given entities and date window, then kicks off the matching workflow. Poll the session for status and counters.

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Parameters

- `firm_id` (path, string, required)

## Request body

Schema: `CleanupSessionCreate`

- `date_start` (string · date · required)
- `date_end` (string · date · required)
- `business_ids` (array · string) — Entities in scope; empty = every active firm business
- `date_tolerance_days` (integer)

## Responses

### 201 — Successful Response

Schema: `SuccessEnvelope_CleanupRunResponse_`

- `success` (boolean)
- `message` (string)
- `code` (string)
- `data` (CleanupRunResponse)

### 401 — Unauthorized - Authentication required

### 403 — Forbidden - Insufficient permissions

### 404 — Not Found - Resource does not exist

### 422 — Validation Error - Invalid data format

## Code samples

### cURL

```bash
curl -X POST 'https://api.ondayzero.com/api/v1/advisory-firms/{firm_id}/cleanup-sessions' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "date_start": "2026-01-01",
  "date_end": "2026-01-01"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/advisory-firms/{firm_id}/cleanup-sessions', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "date_start": "2026-01-01",
  "date_end": "2026-01-01"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

payload = {
  "date_start": "2026-01-01",
  "date_end": "2026-01-01"
}

response = httpx.post("https://api.ondayzero.com/api/v1/advisory-firms/{firm_id}/cleanup-sessions", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/intercompany-cleanup/create-cleanup-session
- OpenAPI slice: https://www.ondayzero.com/docs/reference/intercompany-cleanup/create-cleanup-session/openapi.json
- Other endpoints in **intercompany-cleanup**: https://www.ondayzero.com/docs/reference/intercompany-cleanup
