Description
Delete tag (tag will be also removed from all assigned objects). System tags can not be deleted. Tags can be removed either by TagId or combination of TypeId and Name parameters.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
TagId |
integer |
0 |
123 |
Id of the tag which will be deleted. |
| 2 |
TypeId |
integer |
0 |
123 |
Type of the tag (only used in combination with Name parameter). |
| 3 |
Name |
string |
0 |
Sample text |
Name of the tag which will be deleted (only used in combination with TypeId parameter). |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiTagDelete>
<dem:TagId>123</dem:TagId>
<dem:TypeId>123</dem:TypeId>
<dem:Name>Sample text</dem:Name>
</dem:pixiTagDelete>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Return status
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Result of API Caèll |
| 2 |
Message |
string |
Extended Result of API Caèll |
Additional Notes