Description
Returns all item tags defined in the system. By default, system-reserved tags are excluded. Set SystemTags to 1 to include them.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
SystemTags |
bit |
0 |
0 |
Controls whether system-reserved tags are included. 0 (default) — returns only normal tags. 1 — returns all tags including system tags. |
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:pipiGetItemTags>
<dem:SystemTags>0</dem:SystemTags>
</dem:pipiGetItemTags>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1: Item Tags
# |
Name |
Type |
Description |
1 |
TagKey |
int |
Tag ID. |
2 |
TagName |
varchar(50) |
Tag name. |
3 |
TagDescription |
varchar(4000) |
Tag description. |
Additional Notes
Results are ordered alphabetically by tag name.
System tags are tags reserved for internal pixi use. These are excluded by default (SystemTags = 0). Pass SystemTags = 1 to retrieve the full list including system tags.