Examples for FTAs
A few examples available in the Project-specific domain for FTA are as follows:
Getting FTAs 
To get a FTA in Windchill Risk and Reliability, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FTAs
Getting specific FTAs 
To get details for a specific FTA in Windchill Risk and Reliability, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FTAs(<ftaID>)
Creating a FTA 
To create a FTA in Windchill Risk and Reliability, use the following POST URL.
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FTAs
Request Body
{
"GateEventType" : "type",
"ParentID" : "" or -1 or null
}
Updating a specific FTAs 
To update details for a specific FTA in Windchill Risk and Reliability, use the following PATCH URL.
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FTAs(<ftaID>)
Request Body
{
"GateEventType" : "type",
"ParentID" : "" or -1 or null
}
Deleting a FTA 
To delete a FTA in Windchill Risk and Reliability, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/Systems(<systemID>)/FTAs(<ftaID>)