Example for Incidents
A few examples available in the Project-specific domain for incidents are as follows:
Getting Incidents 
To get incidents for a specific system, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents?$expand=User,Group
Updating Users on an Incident 
To update a user for a specific incident, use the following PUT URL.
URL
PUT /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents(<incidentID>)/User/$ref
Request Body
{
"@odata.id":"/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)"
}
Creating Incidents 
To create incident for a specific project, use the following POST URL.
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents
Request Body
{
"User@odata.bind": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)",
"Group@odata.bind": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Groups(<groupID>)",
"Configuration@odata.bind": "Systems(<systemID>)/Configurations(<configurationID>)",
"SystemTreeItem@odata.bind": "Systems(<systemID>)/TreeItems(TreeItemId)"
}
Deleting Incidents 
To delete incident for a specific project, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/Incidents(<incidentID>)