Examples for Problems Associated with FMEA Tree Item
A few examples available in the Project-specific domain for associated problems are as follows:
Getting Associated Problems 
To get the associated problems for FMEATreeItem, use to following GET URL
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/AssociatedProblems
Getting specific Associated Problems 
To get details for a specific associated problems for FMEATreeItem, use to following GET URL
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/AssociatedProblems(<associatedproblemID>)
Updating Associated Problems 
To update details for a specific associated problems , use to following PATCH URL
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/AssociatedProblems(<associatedproblemID>)
Request Body
{
"Details" : "remarks"
}
Associating Problem with FMEA Tree Item 
To associate problem with a FMEA Tree Item, use to following POST URL
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/AssociatedProblems
Request Body
{
"Details" : "remarks",
"Problem@odata.bind" : "Systems(<systemID>)/Problems(<problemID>)"
}
Disassociating Problem withFMEA Tree Item 
To disassociate problem with a FMEA Tree Item, use to following DELETE URL
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FMEAs(<fmeaID>)/TreeItems(<treeitemID>)/AssociatedProblems(<associatedproblemID>)