> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kimp360.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Archive Task

> Archive a card by ID

## Archive Card

```http theme={null}
PUT /api/card/{id} HTTP/1.1
Content-Type: application/json
```

Path parameter: `id` – required card identifier to archive. No request body needed.

**Response:**

```json theme={null}
{
  "status": 200,
  "data": {
    "id": "string",
    "title": "string",
    "status": { "id": "string", "name": "string" }
  },
  "error": null,
  "message": null
}
```

> Both "already archived" and "just archived" return a `200` success.
