Examples FDI Output Data
A few examples of the APIs available available in the Project-specific domain for FDI Output Data are as follows:
Getting FDI Output Data 
To get the FDI Output Data associated with a specific system, use to following GET URL
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/MaintLibraries(<MaintLibrary_ID>)/FDIOutputDefinitions(<FDIOutputDefinition_ID>)/FDIOutputDatas
Getting specific FDI Output Data details 
To get details of a specific FDI Output Data, use to following GET URL
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/MaintLibraries(<MaintLibrary_ID>)/FDIOutputDefinitions(<FDIOutputDefinition_ID>)/FDIOutputDatas(<FDIOutputData_ID>)
Updating details for a specific FDI Output Data 
To update details of a specific FDI Output Data, use to following PATCH URL
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/MaintLibraries(<MaintLibrary_ID>)/FDIOutputDefinitions(<FDIOutputDefinition_ID>)/FDIOutputDatas(<FDIOutputData_ID>)
Request Body
{
"TaskCode":"<TaskCode>"
}
Creating a FDI Output Data 
To create a FDI Output Data, use to following POST URL
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/MaintLibraries(<MaintLibrary_ID>)/FDIOutputDefinitions(<FDIOutputDefinition_ID>)/FDIOutputDatas
Request Body
{
"TaskCode":"<TaskCode>",
"QtyTask":<TaskQuantity>,
"TaskFrequency:<TaskFrequency>
}
Deleting a FDI Output Data 
To delete a FDI Output Data, use to following DELETE URL
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/MaintLibraries(<MaintLibrary_ID>)/FDIOutputDefinitions(<FDIOutputDefinition_ID>)/FDIOutputDatas(<FDIOutputData_ID>)