POST
/hyax-api/v1/products/:id/restoreRestore product
Brings an archived product back as a draft. Publish it separately once you have checked it over.
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Request
curl -X POST 'https://platform.hyax.com/hyax-api/v1/products/clx_example_id/restore' \
-H 'Authorization: Bearer YOUR_API_KEY'Response
{
"success": true,
"message": "Product restored as a draft",
"data": { "id": "clx…", "title": "Studio Tee", "isActive": false, "isArchived": false }
}