»
Item DELETE API Documentation
Delete an Item: /items/{item_id}
DELETE
https://dev-api.exsited.com/api/v3/items/{item_id}
Try It Out
Purpose
Delete an item by its unique identifier (id) from the system.
Use Case
This endpoint is used to remove an item permanently. It ensures that the item is no longer accessible or active in the system.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| item_id | string | The unique identifier of the item to delete. |
Query Parameters
No query parameters required for this endpoint.
Request Body
No request body is required for this endpoint.
Response
Upon successful deletion, the server responds with a 204 No Content status code, indicating the operation completed without any issues. No additional response body is returned.
| Status Code | Description |
|---|---|
| 204 | Item was successfully deleted. |
| 404 | Item not found with the given ID. |