Description
Get tags, result can be filtered by DateFrom, DateTo or by TypeId. By default 1000 rows is returned.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
RowCount |
integer |
0 |
123 |
Number of records returned, by default 1000. |
2 |
DateFrom |
string |
0 |
2019-01-01 00:00:00 |
Filter tags by date when they were created - from date. |
3 |
DateTo |
string |
0 |
2019-01-31 23:59:59 |
Filter tags by date when they were created - to date. |
4 |
TypeId |
integer |
0 |
1 |
Filter tags by type id. |
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:pixiTagGet>
<dem:RowCount>123</dem:RowCount>
<dem:DateFrom>2019-01-01 00:00:00</dem:DateFrom>
<dem:DateTo>2019-01-31 23:59:59</dem:DateTo>
<dem:TypeId>1</dem:TypeId>
</dem:pixiTagGet>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1: List of Tags
# |
Name |
Type |
Description |
1 |
TagId |
string |
Tag id |
2 |
Name |
string |
Tag name |
3 |
Description |
string |
Tag description |
4 |
IsSystemTag |
string |
Flag if tag is system tag |
5 |
CreateDate |
string |
Date when record was created |
6 |
TypeId |
string |
Tag type id |
7 |
TypeName |
string |
Tag type name |
Additional Notes