time_entry_create.Rd
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
Project ID
Start time
End time
Description
Task ID
A time entry ID.
if (FALSE) {
# 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"
)
}