Updates the title of an existing design.
PUT /api/design/{designId}/rename| Parameter | Type | Description |
|---|---|---|
| designId | integer | The internal ID of the design to rename. |
| Parameter | Type | Description |
|---|---|---|
| title | string | The new title for the design (max 30 characters). |
{
"title": "New Design Name"
}Returns the updated design object.
{
"designId": 54321,
"designItemNo": "MUL123456",
"title": "New Design Name",
"manufacturerId": 10,
"styleId": 31930,
"heatingCode": "98",
"isEditable": true,
"designLogos": [...]
}