Activate Template
POST /v1/product/template/:id/activate
Activates a product template, converting it into an active, purchasable product. This endpoint processes the template's configuration, applies default values, and creates a product instance based on the template. Returns the newly created product with all resolved settings and identifiers.
Response Example
{
"id": "product-id-1",
"group_id": "product-group-id-1",
"name": "Activated Product",
"tenant": "tenant-id-1",
"status": {
"active": true,
"deleted": false
},
"created": "2025-01-01T00:00:00.000Z",
"updated": "2025-01-01T00:00:00.000Z"
}