Time Entries
Time entry records contain information about time worked by an employee on a work package.
Available methods
-
POST
/time-entries/
— Insert a Time Entry -
GET
/time-entries/
— Get the List of Time Entries -
GET
/time-entries/{id}
— Get a Time Entry -
DELETE
/time-entries/{id}
— Delete a Time Entry -
OPTIONS
/time-entries/
— Discover Available Methods and Fetch the Endpoint Reference for Time Entries
Time entry object properties
A time entry is a time slot worked by an employee on a work package.
The TimeEntry
object has the following properties:
Property |
Description |
Type |
Read-only |
Query allowed |
Sorting allowed |
---|---|---|---|---|---|
|
The accounting period date of the time entry. |
string($date-time) |
— |
Yes |
Yes |
|
The internal ID of the associated service (category). |
integer($int64) |
— |
Yes |
Yes |
where |
The internal ID of the associated service line |
integer($int64) |
Yes |
Yes |
Yes |
|
The internal ID of the associated cost center. |
integer($int64) |
Yes |
Yes |
Yes |
|
Time the record was created. |
string($date-time) |
Yes |
Yes |
— |
|
The internal ID of the associated customer. |
integer($int64) |
— |
Yes |
Yes |
|
The date of the time entry. |
string($date-time) |
— |
Yes |
Yes |
|
The number of decimal hours for the time entry. Decimal time entry for the number of hours is supported if the feature Use Days Instead of Hours for All Time Entries is disabled for your account. You should not use the features Enable Start and End Tme Entry on Timesheets and Use Days Instead of Hours for All Time Entries in conjunction. When Enable Start and End Tme Entry on Timesheets is enabled and a user enters a start time and end time in SuiteProjects Pro, the duration is calculated in hours and not converted to days. When using the API and both features are enabled, passing decimal_hours and minutes but not hours in the API call will result in an error (error code 1407). |
number($float) |
— |
Yes |
— |
|
The description of the time entry. |
string |
— |
Yes |
— |
|
The time entry end time. |
string($date-time) |
— |
Yes |
— |
|
Date and time the time entry was marked as "exported". |
string($date-time) |
— |
Yes |
— |
|
The number of hours for the time entry. |
number($float) |
— |
Yes |
— |
|
The number of hours remaining of the associated project task. |
number($float) |
— |
— |
— |
|
The unique internal identifier of the time entry. Assigned by SuiteProjects Pro. |
integer($int64) |
Yes |
Yes |
Yes |
|
The internal ID of the associated job code. |
integer($int64) |
— |
Yes |
Yes |
|
The number of minutes for the time entry. Must be an integer. |
integer($int64) |
— |
Yes |
— |
|
Notes about this time entry. |
string |
— |
Yes |
— |
|
The internal ID of the associated payroll type. |
integer($int64) |
— |
Yes |
Yes |
|
The internal ID of the associated project. |
integer($int64) |
— |
Yes |
Yes |
|
The internal ID of the task within the associated project. |
integer($int64) |
— |
Yes |
Yes |
|
The internal ID of the project task type of the associated project task. |
integer($int64) |
— |
Yes |
Yes |
|
The internal ID of the schedule change item from a schedule request |
integer($int64) |
Yes |
Yes |
Yes |
|
The internal ID of the associated slip if this time entry was billed. |
integer($int64) |
Yes |
Yes |
Yes |
|
The time entry start time. |
string($date-time) |
— |
Yes |
— |
|
Used by thin clients to reconcile imported records. |
string |
Yes |
Yes |
Yes |
|
[REQUIRED] The internal ID of the associated timesheet. |
integer($int64) |
— |
Yes |
Yes |
|
The internal ID of the associated time type. |
integer($int64) |
— |
Yes |
Yes |
|
The date the time entry was last updated or modified. |
string($date-time) |
Yes |
Yes |
Yes |
|
The internal ID of the associated employee. |
integer($int64) |
Yes |
Yes |
Yes |
Access to certain object types and object attributes depend on the business logic configured for your SuiteProjects Pro account. It may vary depending on the role and access privileges associated with the access token and with the user who authorized the application.
Required and read-only attributes also depend on the business logic configured for each specific SuiteProjects Pro account. Some fields such as id
, created
, and updated
are system-generated and always read-only.