# POST /api/v1/contracts/inbound/hours

> Ingest an inbound hours submission (Slack/email reply)

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

## Description

Turn a parsed Slack or email hours reply into a pending drawdown entry awaiting approval (the hours gate). The caller supplies the already-parsed fields; the target contract must belong to the business.

## Authentication

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

## Request body

Schema: `HoursSubmissionRequest`

- `contract_id` (string · required) — Contract the hours draw against.
- `hours` (number | string · required) — Hours consumed.
- `entry_date` (string · required) — Date the work happened (YYYY-MM-DD).
- `submitted_by` (string) — Who submitted the hours (Slack user / email sender).
- `submitted_via` (string) — Inbound channel: slack, email, or manual.
- `source_message_id` (string) — ID of the Slack/email message that created this entry.
- `description` (string) — Optional note.
- `order_line_id` (string) — Order line the hours are drawn against (optional).

## Responses

### 201 — Successful Response

Schema: `SuccessEnvelope_DrawdownResponse_`

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

### 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 POST 'https://api.ondayzero.com/api/v1/contracts/inbound/hours' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "contract_id": "string",
  "hours": "string",
  "entry_date": "string"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/contracts/inbound/hours', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "contract_id": "string",
  "hours": "string",
  "entry_date": "string"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

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

payload = {
  "contract_id": "string",
  "hours": "string",
  "entry_date": "string"
}

response = httpx.post("https://api.ondayzero.com/api/v1/contracts/inbound/hours", headers=headers, json=payload)
data = response.json()
```

## See also

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