Represents a time registration entry in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description | 
|---|---|---|
| GET timeRegistrationEntry | timeRegistrationEntry | Gets a time registration entry object. | 
| DELETE timeRegistrationEntry | none | Deletes a time registration entry object. | 
| POST timeRegistrationEntry | timeRegistrationEntry | Creates a time registration entry object. | 
| PATCH timeRegistrationEntry | timeRegistrationEntry | Updates a time registration entry object. | 
Navigation
| Navigation | Return Type | Description | 
|---|---|---|
| employee | employee | Gets the employee of the timeRegistrationEntry. | 
| dimensionSetLines | dimensionSetLines | Gets the dimensionsetlines of the timeRegistrationEntry. | 
Properties
| Property | Type | Description | 
|---|---|---|
| id | GUID | The unique ID of the time registration entry. Non-editable. | 
| employeeId | GUID | The unique ID of employee. | 
| employeeNumber | string | The employee's number. | 
| jobId | GUID | The ID of the time registration entry job. | 
| jobNumber | string | The number of the time registration entry job. | 
| jobTaskNumber | string | The number of the job task. | 
| absence | string | The cause of absence code. | 
| lineNumber | integer | The time registration entry item line number. | 
| date | date | The date of the time registration entry. | 
| quantity | decimal | The quantity of the item in the time registration entry. | 
| status | NAV.employeeTimeRegStatus | Specifies the status of the time registration entry. It can be "Open", "Submitted", "Rejected" or "Approved". | 
| unitOfMeasureId | GUID | The ID of unit of measure for the time registration entry. | 
| unitOfMeasureCode | string | The code of unit of measure for the time registration entry. | 
| lastModfiedDateTime | datetime | The last datetime the time registration entry was modified. Read-Only. | 
JSON representation
Here's a JSON representation of the timeRegistrationEntry resource.
{
    "id": "GUID",
    "employeeId": "GUID",
    "employeeNumber": "string",
    "jobId": "GUID",
    "jobNumber": "string",
    "jobTaskNumber": "string",
    "absence": "string",
    "lineNumber": "integer",
    "date": "date",
    "quantity": "decimal",
    "status": "NAV.employeeTimeRegStatus",
    "unitOfMeasureId": "GUID",
    "unitOfMeasureCode": "string",
    "lastModfiedDateTime": "datetime"
}
Related information
GET timeRegistrationEntry
DELETE timeRegistrationEntry
POST timeRegistrationEntry
PATCH timeRegistrationEntry