# POST /api/v1/fixed-assets/categories

> Create asset category

- **Tag:** fixed-assets
- **Operation ID:** `create_asset_category_api_v1_fixed_assets_categories_post`

## Description

Create a new asset category.

**Request Body:**
- `name`: Category name, 1-255 chars (required)
- `description`: Category description, max 1000 chars (optional)
- `default_useful_life_months`: Default useful life in months, 1-600 (optional, defaults to 60)
- `default_depreciation_method`: Default depreciation method - straight_line, declining_balance, double_declining, units_of_production (optional, defaults to 'straight_line')
- `default_salvage_percent`: Default salvage percentage, 0-100 (optional, defaults to 0)
- `asset_ledger_id`: Ledger ID for asset account (optional)
- `depreciation_expense_ledger_id`: Ledger ID for depreciation expense (optional)
- `accumulated_depreciation_ledger_id`: Ledger ID for accumulated depreciation (optional)

## Authentication

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

## Request body

Schema: `AssetCategoryCreate`

- `name` (string · required) — Category name
- `description` (string) — Category description
- `default_useful_life_months` (integer) — Default useful life in months for assets in this category
- `default_depreciation_method` (DepreciationMethod) → `DepreciationMethod` — Default depreciation method
- `default_salvage_percent` (integer) — Default salvage value as percentage of cost
- `asset_ledger_id` (string) — Ledger account for asset cost
- `depreciation_expense_ledger_id` (string) — Ledger account for depreciation expense
- `accumulated_depreciation_ledger_id` (string) — Ledger account for accumulated depreciation

## Responses

### 201 — Successful Response

Schema: `AssetCategoryResponse`

- `name` (string · required) — Category name
- `description` (string) — Category description
- `default_useful_life_months` (integer) — Default useful life in months for assets in this category
- `default_depreciation_method` (DepreciationMethod) → `DepreciationMethod` — Default depreciation method
- `default_salvage_percent` (integer) — Default salvage value as percentage of cost
- `id` (string · required) — Category ID
- `asset_ledger_id` (string) — Ledger account for asset cost
- `depreciation_expense_ledger_id` (string) — Ledger account for depreciation expense
- `accumulated_depreciation_ledger_id` (string) — Ledger account for accumulated depreciation
- `asset_count` (integer) — Number of assets in this category
- `created_at` (string · date-time · required) — Record creation timestamp
- `updated_at` (string · date-time · required) — Last update timestamp

### 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/fixed-assets/categories' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "string"
}'
```

### JavaScript

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

### Python

```python
import httpx

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

payload = {
  "name": "string"
}

response = httpx.post("https://api.ondayzero.com/api/v1/fixed-assets/categories", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/fixed-assets/create-asset-category
- OpenAPI slice: https://www.ondayzero.com/docs/reference/fixed-assets/create-asset-category/openapi.json
- Other endpoints in **fixed-assets**: https://www.ondayzero.com/docs/reference/fixed-assets
