GET {version}/GetTags
Get Tags
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Get Tags
Collection of EntityGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| GUID | globally unique identifier |
None. |
|
| Text | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GUID": "cab13bbe-e874-45ec-93ab-951659c9962b",
"Text": "sample string 2",
"IsActive": true
},
{
"GUID": "cab13bbe-e874-45ec-93ab-951659c9962b",
"Text": "sample string 2",
"IsActive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEntityGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<EntityGroup>
<GUID>cab13bbe-e874-45ec-93ab-951659c9962b</GUID>
<IsActive>true</IsActive>
<Text>sample string 2</Text>
</EntityGroup>
<EntityGroup>
<GUID>cab13bbe-e874-45ec-93ab-951659c9962b</GUID>
<IsActive>true</IsActive>
<Text>sample string 2</Text>
</EntityGroup>
</ArrayOfEntityGroup>