Timesheet Entries
The
Timesheet Entry
object is used to track coverage for hours worked by an 'Employee'.Properties
id
UUIDRequired
remote_id
StringOptional
The third-party API ID of the matching object.
employee
UUIDOptional
The employee the timesheet entry is for.
hours_worked
NumberOptional
The number of hours logged by the employee.
start_time
DateTime (ISO 8601)Optional
The time at which the employee started work.
end_time
DateTime (ISO 8601)Optional
The time at which the employee ended work.
created_at
DateTime (ISO 8601)Required
modified_at
DateTime (ISO 8601)Required
This is the datetime that this object was last updated by Merge
GET
/timesheet-entries
https://api.merge.dev/api/hris/v1/timesheet-entries
US
EU
Returns a list of TimesheetEntry
objects.
Query & Path Parameters
created_after
DateTime (ISO 8601)Optional
If provided, will only return objects created after this datetime.
created_before
DateTime (ISO 8601)Optional
If provided, will only return objects created before this datetime.
cursor
StringOptional
The pagination cursor value.
employee_id
StringOptional
If provided, will only return employee payroll runs for this employee.
ended_after
StringOptional
If provided, will only return employee payroll runs ended after this datetime.
ended_before
StringOptional
If provided, will only return employee payroll runs ended before this datetime.
include_deleted_data
BooleanOptional
Whether to include data that was marked as deleted by third party webhooks.
include_remote_data
BooleanOptional
Whether to include the original data Merge fetched from the third-party to produce these models.
modified_after
DateTime (ISO 8601)Optional
If provided, only objects synced by Merge after this date time will be returned.
modified_before
DateTime (ISO 8601)Optional
If provided, only objects synced by Merge before this date time will be returned.
order_by
StringOptional
Overrides the default ordering for this endpoint. Possible values include: start_time, -start_time.
page_size
IntegerOptional
Number of results to return per page.
remote_id
StringOptional
The API provider's ID for the given object.
started_after
StringOptional
If provided, will only return employee payroll runs started after this datetime.
started_before
StringOptional
If provided, will only return employee payroll runs started before this datetime.
POST
/timesheet-entries
https://api.merge.dev/api/hris/v1/timesheet-entries
US
EU
Creates a TimesheetEntry
object with the given values.
Query & Path Parameters
is_debug_mode
BooleanOptional
Whether to include debug fields (such as log file links) in the response.
run_async
BooleanOptional
Whether or not third-party updates should be run asynchronously.
Body Parameters
model
ObjectRequired
Find available fields below under “Model Parameters”.
Model Parameters
View app-specific writable fields under “Field support by platform” in this section.employee
UUIDThe employee the timesheet entry is for. Must pass in a valid Merge ID, which can be obtained from the
id
field in the Employee object.hours_worked
NumberThe number of hours logged by the employee.
start_time
DateTime (ISO 8601)The time at which the employee started work.
end_time
DateTime (ISO 8601)The time at which the employee ended work.
integration_params
Objectlinked_account_params
ObjectField support by integration
See all supported fields
BambooHR
On top of normalized Common Models, Merge also supports Passthrough Requests for this platform's API.
Supported POST Model Parameters
employee
UUIDRequired
end_time
DateTime (ISO 8601)Optional
hours_worked
NumberOptional
remote_id
StringOptional
start_time
DateTime (ISO 8601)Optional

Ceridian Dayforce
On top of normalized Common Models, Merge also supports Passthrough Requests for this platform's API.
Supported POST Model Parameters
employee
UUIDRequired
end_time
DateTime (ISO 8601)Optional
hours_worked
NumberOptional
remote_id
StringOptional
start_time
DateTime (ISO 8601)Optional

Paycor
On top of normalized Common Models, Merge also supports Passthrough Requests for this platform's API.
Supported POST Model Parameters
employee
UUIDRequired
end_time
DateTime (ISO 8601)Optional
hours_worked
NumberOptional
start_time
DateTime (ISO 8601)Optional

UKG Ready
On top of normalized Common Models, Merge also supports Passthrough Requests for this platform's API.
Supported POST Model Parameters
employee
UUIDRequired
end_time
DateTime (ISO 8601)Optional
hours_worked
NumberOptional
remote_id
StringOptional
start_time
DateTime (ISO 8601)Optional

7shifts
To include the correct model fields when making POST requests, use the GET /timesheet-entries/meta/post endpoint. Learn more in our /meta guide.
GET
/timesheet-entries/{id}
https://api.merge.dev/api/hris/v1/timesheet-entries/{id}
US
EU
Returns a TimesheetEntry
object with the given id
.
Query & Path Parameters
id
UUIDRequired
include_remote_data
BooleanOptional
Whether to include the original data Merge fetched from the third-party to produce these models.
GET
/timesheet-entries/meta/post
https://api.merge.dev/api/hris/v1/timesheet-entries/meta/post
US
EU
Returns metadata for TimesheetEntry
POSTs.