time_entry_create {clockify} | R Documentation |
Create a time entry
Description
Creating time entries for other users is a paid feature.
Usage
time_entry_create(
user_id = NULL,
project_id = NULL,
start,
end = NULL,
description = NULL,
task_id = NULL
)
Arguments
user_id |
User ID |
project_id |
Project ID |
start |
Start time |
end |
End time |
description |
Description |
task_id |
Task ID |
Value
A time entry ID.
Examples
## 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)
[Package clockify version 0.1.6 Index]