Time Registrations
Time registrations track hours worked on activities and projects. They support billing, cost tracking, and can be linked to specific milestones, employees, and hour types.
Endpoints
List Time Registrations
GET
/v1/odata/TimeRegistrationGet by ID
GET
/v1/odata/TimeRegistration({id})With expanded relations:
GET
/v1/odata/TimeRegistration({id})?$expand=Employee,Activity,HourType,MilestoneCreate
POST
/v1/odata/TimeRegistrationUpdate
PUT
/v1/odata/TimeRegistration({id})Delete
DELETE
/v1/odata/TimeRegistration({id})Fields
| Field | Type | Description |
|---|---|---|
StartDate | DateTimeOffset | Start date/time |
EndDate | DateTimeOffset | End date/time |
DurationInHours | Double | Duration in hours |
Description | String | Description of the work performed |
IsBillable | Boolean | Whether the time is billable to a client |
IsBilled | Boolean | Whether the time has been invoiced |
IsProcessed | Boolean | Whether the time has been approved/processed |
SalesPricePerHour | Double | Sales price per hour |
TotalSalesPrice | Double | Total sales price (DurationInHours × SalesPricePerHour) |
CostPricePerHour | Double | Cost price per hour |
TotalCostPrice | Double | Total cost price (DurationInHours × CostPricePerHour) |
Relationships
| Relationship | Target Entity | Cardinality | Description |
|---|---|---|---|
| Activity | Activity | N:1 | Parent activity |
| SubActivity | Activity | N:1 | Sub-activity |
| Employee | Employee | N:1 | Employee who logged the hours |
| Relationship | Relationship | N:1 | Related client relationship |
| Milestone | ProjectMilestone | N:1 | Project milestone |
| HourType | TimeRegistrationActivity | N:1 | Hour type/category |
| Task | Task | 1:N | Linked tasks |
| Appointment | Appointment | 1:N | Linked appointments |
| ProductLines | ProductLine | 1:N | Linked product lines |
| BillingLine | ProductLine | N:1 | Billing product line |
Expanding Relationships
GET
/v1/odata/TimeRegistration({id})?$expand=ActivityNavigating Relationships
GET
/v1/odata/TimeRegistration({id})/Activity