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": "a24d687a-237d-499b-95f5-9d2943fefdfe",
"UserId": "ee9aaa82-5a09-4d37-b7c5-69dd4a8a6cfc",
"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>a24d687a-237d-499b-95f5-9d2943fefdfe</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>ee9aaa82-5a09-4d37-b7c5-69dd4a8a6cfc</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>