GET CMTag/GetSiteTags
Returns a list of CM Tags with site tag type
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CMTagDto| Name | Type | Description | Additional information |
|---|---|---|---|
| ItemID | integer |
None. |
|
| TagID | integer |
None. |
|
| ParentTagName | string |
None. |
|
| ChildTagName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ItemID": 1,
"TagID": 2,
"ParentTagName": "sample string 3",
"ChildTagName": "sample string 4"
},
{
"ItemID": 1,
"TagID": 2,
"ParentTagName": "sample string 3",
"ChildTagName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfCMTagDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tevalis.API.Core.Models.CMTags">
<CMTagDto>
<ChildTagName>sample string 4</ChildTagName>
<ItemID>1</ItemID>
<ParentTagName>sample string 3</ParentTagName>
<TagID>2</TagID>
</CMTagDto>
<CMTagDto>
<ChildTagName>sample string 4</ChildTagName>
<ItemID>1</ItemID>
<ParentTagName>sample string 3</ParentTagName>
<TagID>2</TagID>
</CMTagDto>
</ArrayOfCMTagDto>