POST {version}/QBManipulateTags
Add/Remove Tags to Entities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
QBFilterTag| Name | 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": "1657512f-dc0d-41dd-82f9-1efd47c46797",
"UserId": "e96feac7-9840-449b-b091-6a173d3db910",
"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>1657512f-dc0d-41dd-82f9-1efd47c46797</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>e96feac7-9840-449b-b091-6a173d3db910</UserId> </QBFilterTag>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
count of entities impacted
Result| Name | 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>