Skip to main content

Delete Product Dimensions

Delete a product dimensions record from the system.

Endpoint

DELETE /api/v1/product-dimensions/{id}

Path Parameters

id
integer
required
The unique identifier of the product dimensions record to delete

Response

This endpoint returns no content on success.

Status Codes

204
No Content
Product dimensions successfully deleted
404
Not Found
Product dimensions not found

Example Request

curl -X DELETE https://api.example.com/api/v1/product-dimensions/1 \
  -H "Content-Type: application/json"

Example Response

On success, the endpoint returns HTTP status 204 with no response body.

Error Response

{
  "status": 404,
  "error": "Not Found",
  "message": "Product dimensions not found with id: 1"
}

Notes

Deleting product dimensions is permanent and cannot be undone. Make sure you want to delete the record before making this request.
If the product dimensions are associated with a product, deleting them may affect product information displays. Consider the impact on related data before deletion.

Build docs developers (and LLMs) love