Example: Creating Multiple Standard Control Characteristic Objects
You can create a single or multiple Standard Control Characteristic objects using the CreateStandardCCs action. The following example shows how to create multiple Standard Control Characteristic objects. Use the following POST request with the request body:
URI
POST /Windchill/servlet/odata/MfgProcMgmt/CreateWorkCenters HTTP/1.1
Request Headers
Content-Type: application/json
CSRF_NONCE: <Use the value from Fetch NONCE example>
Request Body
{
"StandardCCs": [
{
"Category": {
"Value": "circularity"
},
"Name": "WRSSTANDARDCCTEST1",
"Context@odata.bind": "Containers('OR:wt.pdmlink.PDMLinkProduct:163170')"
},
{
"Category": {
"Value": "angularity"
},
"Name": "WRSSTANDARDCCTEST2",
"Context@odata.bind": "Containers('OR:wt.pdmlink.PDMLinkProduct:163170')"
}
]
}