» Item DELETE API Documentation
» 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.

ParameterTypeDescription
idStringThe 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 CodeDescription
204Item was successfully deleted.
404Item not found with the given ID.