POST {version}/ManipulateTags
Add/Remove Tags to Entities
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
FilterTagName | Description | Type | Additional information |
---|---|---|---|
FilterId | globally unique identifier |
None. |
|
EntityIds | string |
None. |
|
TagIds | string |
None. |
|
ToBeAdded | boolean |
None. |
|
RandomPick | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "FilterId": "5ed6c5ab-d9db-4799-953a-5eed090162b4", "EntityIds": "sample string 1", "TagIds": "sample string 2", "ToBeAdded": true, "RandomPick": 1 }
application/xml, text/xml
Sample:
<FilterTag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model.Contact"> <EntityIds>sample string 1</EntityIds> <FilterId>5ed6c5ab-d9db-4799-953a-5eed090162b4</FilterId> <RandomPick>1</RandomPick> <TagIds>sample string 2</TagIds> <ToBeAdded>true</ToBeAdded> </FilterTag>
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>