Get Labor

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

Method: GET

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

Sample output in JSON:

{
    "rfp": {
        "id": 10720,
        "currency": "USD",
        "location": [
            {
                "locationId": 0,
                "locationName": "All Locations",
                "majorTask": [
                    {
                        "id": 2,
                        "name": "Project Initiated",
                        "unitOfMeasure": "Study",
                        "sortOrder": 1000000,
                        "task": [
                            {
                                "id": 11,
                                "name": "Develop detailed project budget (not included in develop scope of work)",
                                "sortOrder": 1100000000,
                                "resource": [
                                    {
                                        "name": "Senior Vice President Clinical",
                                        "code": "CR04",
                                        "mappingKey": "000-00011-00004",
                                        "billingRate": 111.6,
                                        "inflatedBillingRate": 111.5999984741211,
                                        "numUnits": 1.0,
                                        "unitCost": 669.6,
                                        "unitHours": 6.0,
                                        "totalCost": 669.5999755859375,
                                        "totalHours": 6.0
                                    },
                                    {
                                        "name": "Senior Director, Clinical/Therapeutic",
                                        "code": "CR05",
                                        "mappingKey": "000-00011-00005",
                                        "billingRate": 111.6,
                                        "inflatedBillingRate": 111.5999984741211,
                                        "numUnits": 1.0,
                                        "unitCost": 1339.2,
                                        "unitHours": 12.0,
                                        "totalCost": 1339.199951171875,
                                        "totalHours": 12.0
                                    }
                                ]
                            },
                            {
                                "id": 7,
                                "name": "Develop project team",
                                "sortOrder": 900000000,
                                ...
                            }
                        ]
                    },
                    {
                        "id": 32,
                        "name": "Study Setup",
                        "unitOfMeasure": "Study",
                        "sortOrder": 2000000,
                        "task": [
                          ...
                        ]
                    }
                ]
            }
        ],
        "url": "/cleartrial-ws/rfps/10720/labor"
    }
}