Examples for Control Plan
A few examples available in the Project-specific domain for control plans are as follows:
Getting Control Plans 
To get control plan for a specific system, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans
Getting Control Plans on an FMEA 
To get control plan for a specific FMEATreeItem, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/ControlPlans
Updating a Specific Control Plan 
To update a specific control plan, use the following PATCH URL.
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)
Request Body
{
"ControlPlanIdentifier":"<controlplanIdentifier"
}
Creating a Control Plan 
To create a control plan with associated user and group property, use the following POST URL.
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans
Request Body
{
"User@odata.bind":"/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)",
"Group@odata.bind":"/WindchillRiskAndReliability12.0-REST/odata/Administration/Groups(<groupID>)"
}
Deleting a Control Plan 
To delete a control plan with associated user and group property, use the following DELETE URL.
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)