# PUT /api/items/{id} > Items - Update an Item - **Endpoint:** `PUT /api/items/{id}` - **Group:** Items - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ItemsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Item unique ID | | `title` | String | no | Optional Title | | `description` | String | no | Optional Description | | `category_id` | Number | no | Optional Category ID | | `unit_type` | String | no | Optional Unit type | | `rate` | Number | no | Optional Rate | | `show_in_client_portal` | Number | no | Optional Show in client portal (1 or 0) | ## Request example ```bash curl -X PUT "https://yoursite.com/index.php/api/items/123" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "field": "value" }' ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/items/update-item/