POST {version}/QBManipulateTags
Add/Remove Tags to Entities
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
QBFilterTagName | Description | Type | Additional information |
---|---|---|---|
ToBeAdded | boolean |
None. |
|
GroupATagIds | string |
None. |
|
GroupBTagIds | string |
None. |
|
OperationType | string |
None. |
|
ExpressionId | globally unique identifier |
None. |
|
UserId | globally unique identifier |
None. |
|
TagIds | string |
None. |
|
RandomPick | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ToBeAdded": true, "GroupATagIds": "sample string 2", "GroupBTagIds": "sample string 3", "OperationType": "sample string 4", "ExpressionId": "dc9efee6-0583-4f95-8672-085fc8162fe4", "UserId": "a5d36814-76df-47f9-ae4e-a57a29e0c16d", "TagIds": "sample string 7", "RandomPick": 1 }
application/xml, text/xml
Sample:
<QBFilterTag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model.QueryBuilder"> <ExpressionId>dc9efee6-0583-4f95-8672-085fc8162fe4</ExpressionId> <GroupATagIds>sample string 2</GroupATagIds> <GroupBTagIds>sample string 3</GroupBTagIds> <OperationType>sample string 4</OperationType> <RandomPick>1</RandomPick> <TagIds>sample string 7</TagIds> <ToBeAdded>true</ToBeAdded> <UserId>a5d36814-76df-47f9-ae4e-a57a29e0c16d</UserId> </QBFilterTag>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
count of entities impacted
ResultName | Description | Type | Additional information |
---|---|---|---|
Count | integer |
None. |
|
Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Count": 1, "Success": true }
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <Count>1</Count> <Success>true</Success> </Result>