# Remove item `DELETE` `/lists/{list_id}/items/{id}` Removes an item from the list. ## Parameters - **list_id** (`string`, required) — List ID without the "@" prefix. - **id** (`string`, required) — ID of the item to be removed. ## Responses ### 204 — Item removed successfully. ### 401 — Invalid access credentials - **errors** (`array`) - **field** (`string`) — Request field where the error occurred - **type** (`string`) — Error type code - **message** (`string`) — Error message ```json { "errors": [ { "field": "string", "type": "string", "message": "string" } ] } ``` ### 422 — Invalid parameters - **errors** (`array`) - **field** (`string`) — Request field where the error occurred - **type** (`string`) — Error type code - **message** (`string`) — Error message ```json { "errors": [ { "field": "string", "type": "string", "message": "string" } ] } ``` ### 404 — Object not found - **errors** (`array`) - **field** (`string`) — Request field where the error occurred - **type** (`string`) — Error type code - **message** (`string`) — Error message ```json { "errors": [ { "field": "string", "type": "string", "message": "string" } ] } ```