Deleting Multiple PartTagLinks on an Operation
You can delete PartTagLinks by specifying the ObjectTaggableLink (MPMOperationUsageLink) and PartTagLink (Part) OIDs in the request body.
This example shows you how to delete two PartTagLink objects on an Operation. Use the following POST URI with the request body.
URI
POST /Windchill/servlet/odata/MfgProcMgmt/DeletePartTags
Request Headers
Content-Type: application/json
CSRF_NONCE: <Use the value from Fetch NONCE example>
Request Body
{
"taggableOID": "OR:com.ptc.windchill.mpml.processplan.operation.MPMOperationUsageLink:205755",
"taggerOIDs": [
{
"ID": "OR:wt.part.WTPart:205834"
},
{
"ID": "OR:wt.part.WTPart:205672"
}
]
}