Examples for Incident Sub-Table
A few examples available in the project-specific domain for incidents sub-table are as follows:
Getting Incidents sub-table 
To get an incidents sub-table for a specific system, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents<indidentID>/IncidentSubTable1s
Updating an Incident sub-table 
To update a specific incident sub-table, use the following PUT URL.
URL
PUT /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents(<incidentID>)/IncidentSubTable1s<incidentsubtableID>
Request Body
{
"@odata.id":"/WindchillRiskAndReliability12.0-REST/odata/Administration/Groups(<groupID>)",
"UserText1":"<usertext>"
}
Creating an Incident sub-table 
To create an incident sub-table for a specific project, use the following POST URL.
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents<indidentID>/IncidentSubTable1s
Request Body
{
"User@odata.bind": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)",
"Group@odata.bind": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Groups(<groupID>)",
}
Deleting an Incident Sub-table 
To delete an incident sub-table for a specific project, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents(<incidentID>)/IncidentSubTable1s<incidentsubtableID>