Get Cost

Shows the breakdown of labor by major task, task, location, and resources.

Method: GET

URL: /cleartrial-ws/rfps/{rfpID}/cost

Sample output in JSON:

{
    "rfp": {
        "rfpId": 10720,
        "currency": "USD",
        "location": [
            {
                "locationId": 0,
                "locationName": "All Locations",
                "cost": [
                    {
                        "id": 33,
                        "name": "DSMB Reporting",
                        "code": "C00033",
                        "mappingKey": "000-C00033",
                        "wbsModelId": 1,
                        "workUnitId": 10,
                        "locationScoped": false,
                        "credit": false,
                        "includeInflation": true,
                        "totalCost": 0.0,
                        "inflatedTotalCost": 0.0
                    },
                    {
                        "id": 42,
                        "name": "EDC - 3rd Party Costs",
                        "code": "C00042",
                        ...
                    }
                    {
                        ...
                    }
                ]
            },
            {
                "locationId": 166,
                "locationName": "Egypt",
                "cost": [
                    {
                        "id": 38,
                        "name": "Clinical Trial Insurance",
                        "code": "C00038",
                        ...
                    },
                    {
                        ...
                    }
                ]
            }
        ],
        "url": "/cleartrial-ws/rfps/10720/cost"
    }
}
}