This page was automatically generated from tracezilla’s Swagger API documentation 2026-01-26
PUT /tag-detach/{modelName}/{entityId}
Detach a tag from a specific entity.
Parameters (path)
| Name | Required | Description | Values |
|---|---|---|---|
| modelName | required | Model name for the tag. | Order, Partner, PartnerLocation, Sku, Recipe |
| entityId | required | Entity ID. |
Request body
Description
Data to store. One of either tag_name, tag_code or tag_id must be filled. If a tag with the given name does not exist it will be created
Required
This parameter is required.
Request body JSON schema
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"properties": {
"tag_name": {
"format": "string",
"example": "ABC 123"
},
"tag_code": {
"format": "string",
"example": "ABC123"
},
"tag_id": {
"format": "string",
"example": "be3233c4-c0a2-4f47-a62a-303492c20ba6"
}
},
"type": "object"
}
Responses
204
successful operation
403
Unauthorized request
406
not acceptable
500
Internal server error