getProjectFinancialHours
Get the financial hours for a project.
GET /project-financial/{project_id}/hours
ProjectFinancialHoursSchema properties
hourTypes
array
of
ProjectFinancialHoursHourTypeSchema
Hours data per hour type
totals
ProjectFinancialHoursHourTypeBudgetsSchema
The totals
averageHourlyRate
number
The average costs per hour
ProjectFinancialHoursHourTypeSchema properties
budgeted
number
The budgeted hours.
realised
number
The realised hours.
id
integer
The hour type id.
name
string
The hour type name.
ProjectFinancialHoursHourTypeBudgetsSchema properties
budgeted
number
The budgeted hours.
realised
number
The realised hours.
Parameters
project_id
integer
The parameter 'Project Id' is required in the path.
Sample JSON (output)
{ "hourTypes": [ { "budgeted": 1234.56, "realised": 1234.56, "id": 1, "name": "test" } ], "totals": { "budgeted": 1234.56, "realised": 1234.56 }, "averageHourlyRate": 1234.56 }