getProjectFinancialHourType

Get the financial hours for a specific hour type.

    GET /project-financial/{project_id}/hours/{hour_type_id}

ProjectFinancialHoursRelationSchema properties

hours number
The hours.

ProjectFinancialHoursEmployeeSchema properties

hours number
The hours.

id integer
The relation id.

name string
The relation name.

type integer
The relation type.

ProjectFinancialHourTypeSchema properties

relations array  of  ProjectFinancialHoursEmployeeSchema
Hours data per relation

totals ProjectFinancialHoursRelationSchema
The totals

Parameters

project_id integer
The parameter 'Project Id' is required in the path.

hour_type_id integer
The parameter 'Hour Type Id' is required in the path.

Sample JSON (output)

{
    "relations": [
        {
            "hours": 1234.56,
            "id": 1,
            "name": "test",
            "type": 1
        }
    ],
    "totals": {
        "hours": 1234.56
    }
}

Enums