# PATCH /api/v1/contracts/{contract_id}

> Edit contract

- **Tag:** contracts
- **Operation ID:** `update_contract_api_v1_contracts__contract_id__patch`

## Description

Edit a contract's descriptive/schedule fields (number, first invoice date, estimated end date). Running tallies (billed/recognized/value) are maintained by the billing engine and cannot be edited.

## Authentication

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

## Parameters

- `contract_id` (path, string, required)

## Request body

Schema: `ContractUpdate`

- `number` (string) — Contract reference number.
- `first_invoice_date` (string · date) — Anchor date for the contract's term clock.
- `end_date` (string · date) — Estimated end of term.

## Responses

### 200 — Successful Response

Schema: `SuccessEnvelope_ContractResponse_`

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

### 400 — Bad Request - Invalid input

### 401 — Unauthorized - Authentication required

### 403 — Forbidden - Insufficient permissions

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

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X PATCH 'https://api.ondayzero.com/api/v1/contracts/{contract_id}' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "number": "string",
  "first_invoice_date": "2026-01-01",
  "end_date": "2026-01-01"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/contracts/{contract_id}', {
  method: 'PATCH',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "number": "string",
  "first_invoice_date": "2026-01-01",
  "end_date": "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 = {
  "number": "string",
  "first_invoice_date": "2026-01-01",
  "end_date": "2026-01-01"
}

response = httpx.patch("https://api.ondayzero.com/api/v1/contracts/{contract_id}", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/contracts/update-contract
- OpenAPI slice: https://www.ondayzero.com/docs/reference/contracts/update-contract/openapi.json
- Other endpoints in **contracts**: https://www.ondayzero.com/docs/reference/contracts
