Examples for CCFs
A few examples available in the Project-specific domain for CCFs are as follows:
Getting CCFs 
To get the CCFs details for a project, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/CCFGroups(<ccfgroupID>)/CCFs
Getting details for a specific CCFs 
To get the details for a specific CCFs, use the following GET URL.
URL
GET /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/CCFGroups(<ccfgroupID>)/CCFs(<ccfsID>)
Updating a specific CCFs 
To update details for a specific CCFs, use the following PATCH URL.
URL
PATCH /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/CCFGroups(<ccfgroupID>)/CCFs(<ccfsID>)
Request Body
{
"Units": "<unit>"
}
Creating a CCFs 
To create a CCFs, use the following POST URL.
URL
POST /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/CCFGroups(<ccfgroupID>)/CCFs
Request Body
{
"Name": "<name>",
"ModelType": "<modeltype>",
"Model": "<model>"
}
Deleting a CCFs 
To delete a CCFs, use the following DELETE URL.
URL
DELETE /WindchillRiskAndReliability12.0-REST/odata/Project_<projectID>/CCFGroups(<ccfgroupID>)/CCFs(<ccfsID>)