Example FMEA Worksheet Item
A few examples available in the Project-specific domain for FMEA worksheet items are as follows:
Getting Specific FMEA Worksheet Items 
To get an FMEA Worksheet Item, with expansion on users, for a system in Windchill Risk and Reliability, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems(<worksheetitemID>)?$expand=User
Getting Users for FMEA Worksheet Items 
To get users for an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems?$expand=User
Getting Users on a FMEA Worksheet Items 
To get users associated with an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following GET URL.
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems(<worksheetitemID>)/User
Updating User on a Specific FMEA Worksheet Item 
To update an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following PUT URL.
URL
PUT /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems(<worksheetitemID>)/User/$ref
Request Body
{
"@odata.id": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)",
"ItemIdentifier":"<itemidentifier>"
}
Associating problem to a Specific FMEA Worksheet Item 
To associate a problem with an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following PUT URL.
URL
PUT /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems(<worksheetitemID>)/Probelms/$ref
Request Body
{
"@odata.id" : "{WRR_BASE}/{Project_#}/Systems(<systemId>)/Problems(<problemId>)"
}
Creating FMEA Worksheet Item 
To create an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following POST URL.
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems?$expand=User
Request Body
{
"User@odata.bind": "/WindchillRiskAndReliability12.0-REST/odata/Administration/Users(<userID>)",
"FMEALevel": "Item",
"TreeItem@odata.bind": "Systems(<systemID>)FMEAs(<fmeaID>)/TreeItems(<treeitemID>)",
"ParentID": 0
"Problem@odata.bind" : "Systems(<systemId>)/Problem(<problemId>)"
}
* 
Problem@odata.bind is optional and is used to associate problem to FMEAworksheetitem.
Deleting Specific FMEA Worksheet Items 
To delete an FMEA Worksheet Item for a system in Windchill Risk and Reliability, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)FMEAs(<fmeaID>)/WorksheetItems(<worksheetitemID>)