Windchill REST Services > Windchill REST Services Domain Capabilities > Examples for Basic REST Operations > Examples for the PTC Regulatory Master Domain > Examples for the Non-revisable Regulatory Submission > Creating a Non-revisable Regulatory Submission with an Associated Subject
  
Creating a Non-revisable Regulatory Submission with an Associated Subject
This example shows how to create a non-revisable regulatory submission with an associated subject. 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",
"Subject@odata.bind": "Subjects('OR:wt.part.WTPart:125697')"
}