# POST /api/v1/entity-tags/bulk-attach-many

> Bulk attach tags to many entities

- **Tag:** tags
- **Operation ID:** `bulk_attach_tags_to_entities_api_v1_entity_tags_bulk_attach_many_post`

## Description

Attach one or more tags to many entities of the same type in a single request. Idempotent; existing attachments are skipped. Replaces the per-entity request fan-out used for bulk tagging a table selection.

## Authentication

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

## Request body

Schema: `BulkEntityTagAttachManyRequest`

- `tag_ids` (array · string · required) — Tag UUIDs to attach to every entity
- `model_type` (string · required) — Type of entity (transaction, invoice, bill, etc.)
- `model_ids` (array · string · required) — Entity UUIDs to tag (typically the current selection).

## Responses

### 201 — Successful Response

Schema: `SuccessEnvelope_BulkEntityTagAttachManyResponse_`

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

### 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/entity-tags/bulk-attach-many' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "tag_ids": [],
  "model_type": "string",
  "model_ids": []
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/entity-tags/bulk-attach-many', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "tag_ids": [],
  "model_type": "string",
  "model_ids": []
}),
});
const data = await response.json();
```

### Python

```python
import httpx

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

payload = {
  "tag_ids": [],
  "model_type": "string",
  "model_ids": []
}

response = httpx.post("https://api.ondayzero.com/api/v1/entity-tags/bulk-attach-many", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/tags/bulk-attach-tags-to-entities
- OpenAPI slice: https://www.ondayzero.com/docs/reference/tags/bulk-attach-tags-to-entities/openapi.json
- Other endpoints in **tags**: https://www.ondayzero.com/docs/reference/tags
