»
Item DELETE API Documentation
Endpoint: DELETE/api/v3/items/{id}
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.
Request Data
This endpoint does not require any request body or additional parameters beyond the id in the URL path.
Parameter | Type | Description |
---|---|---|
id | String | The unique identifier of the item to delete. |
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. |