← Home
DELETE/hyax-api/v1/products/:id

Archive product

Archives rather than deletes, because orders reference the product. It is also deactivated, so the buy link stops selling. Reversible with **Restore product**.

Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.

Request

curl -X DELETE 'https://platform.hyax.com/hyax-api/v1/products/clx_example_id' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Response

{
  "success": true,
  "message": "Product archived successfully",
  "data": { "id": "clx…", "title": "Studio Tee", "isActive": false, "isArchived": true }
}