Example Control Plan Sub-Table
A few examples available in the Project-specific domain for control plan sub-table are as follows:
Getting Control Plans Sub-Table 
To get control plan Sub-Table for a specific system, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)/ControlPlanSubtable1s
Updating a Specific Control Plan Sub-Table 
To update a specific control plan sub-table, use the following PATCH URL.
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)/ControlPlanSubtable1s(<subtableID>)
Request Body
{
"Identifier": "<Identifier>"
}
Creating a Control Plan Sub-Table 
To create a control plan sub-table with associated user and group property, use the following POST URL.
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)/ControlPlanSubtable1s
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 Sub-Table 
To delete a control plan sub-table, use the following DELETE URL.
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/ControlPlans(<controlplanID>)/ControlPlanSubtable1s(<subtableID>)