Creating a Non-revisable Regulatory Submission with Associated Drivers
You can create a non-revisable regulatory submission with one or more associated drivers.
This example shows how to create a non-revisable regulatory submission with an associated driver. Use the following POST URI with the request body.
URI
POST /Windchill/servlet/odata/RegMstr/RegulatorySubmissions
Request Headers
Content-Type: application/json
CSRF_NONCE: <Use the value from Fetch NONCE example>
Request Body
{
"@odata.type": "#org.rnd.TestRegSubmission",
"Context@odata.bind": "PTC.DataAdmin.Containers('OR:wt.inf.library.WTLibrary:264553')",
"SubmittedTo@odata.bind": "Places('OR:com.ptc.qualitymanagement.masterdata.entity.MDEntity:265122')",
"Name": "TestRegSub",
"DriverLinks": [
{
"Driver@odata.bind": "Drivers('OR:wt.part.WTPart:125697')"
}
]
}