| time_entry_create | R Documentation |
Creating time entries for other users is a paid feature.
time_entry_create( user_id = NULL, project_id = NULL, start, end = NULL, description = NULL, task_id = NULL )
user_id |
User ID |
project_id |
Project ID |
start |
Start time |
end |
End time |
description |
Description |
task_id |
Task ID |
A time entry ID.
## Not run: # Create a time entry for the authenticated user. time_entry_create( project_id = "600e73263e207962449a2c13", start = "2021-01-02 08:00:00", end = "2021-01-02 10:00:00", description = "Doing stuff" ) # Create a time entry for another user (paid feature). time_entry_create( "5df56293df753263139e60c5", "600e73263e207962449a2c13", "2021-01-02 10:00:00", "2021-01-02 12:00:00", "Doing other stuff" ) ## End(Not run)