
## Archive a document

`POST /v1/note/documents/:id/archive`

Archives a document together with its entire subtree. Archived documents can be read but not edited.

## Parameters

| Parameter | In | Type | Required | Description |
|----------|-----|-----|:-----:|---------|
| `id` | path | integer | yes | Identifier of the subtree root document |

The request body is empty.

## Examples

### curl — personal key

```bash
curl -X POST https://vibecode.bitrix24.com/v1/note/documents/77/archive \
  -H "X-Api-Key: YOUR_API_KEY"
```

### curl — OAuth application

```bash
curl -X POST https://vibecode.bitrix24.com/v1/note/documents/77/archive \
  -H "X-Api-Key: YOUR_APP_KEY" \
  -H "Authorization: Bearer USER_SESSION_TOKEN"
```

### JavaScript — personal key

```javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/note/documents/77/archive', {
  method: 'POST',
  headers: { 'X-Api-Key': 'YOUR_API_KEY' },
})
const { data } = await res.json()
console.log(data.archived) // true
```

### JavaScript — OAuth application

```javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/note/documents/77/archive', {
  method: 'POST',
  headers: {
    'X-Api-Key': 'YOUR_APP_KEY',
    'Authorization': 'Bearer USER_SESSION_TOKEN',
  },
})
```

## Response fields

| Field | Type | Description |
|------|-----|---------|
| `data.archived` | boolean | `true` on successful archiving |

## Response example

```json
{
  "success": true,
  "data": {
    "archived": true
  }
}
```

## Error response example

404 — document not found:

```json
{
  "success": false,
  "error": {
    "code": "ENTITY_NOT_FOUND",
    "message": "Record with ID = `999999` not found"
  }
}
```

## Errors

| HTTP | Code | Description |
|------|-----|---------|
| 400 | `INVALID_PARAMS` | `id` is not a positive integer |
| 403 | `WRITE_BLOCKED_READONLY_KEY` | The access key is read-only |
| 403 | `BITRIX_ACCESS_DENIED` | No permission to edit the document |
| 404 | `ENTITY_NOT_FOUND` | The document does not exist, is in the trash, or is already archived |
| 403 | `SCOPE_DENIED` | The key lacks the `note` scope |
| 401 | `TOKEN_MISSING` | The key has no tokens configured |

Full list of common API errors — [Errors](/docs/errors).

## Known specifics

- **An archived document cannot be updated.** Calling [`PATCH /v1/note/documents/:id`](./update.md) on an archived document returns `404 ENTITY_NOT_FOUND`.

## See also

- [Update a document](./update.md)
- [Delete a document](./delete.md)
- [Documents](/docs/note/documents)
