The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The first step is to retrieve a token.
Open todoist website to find it :
Don’t forget to store the result to reuse the identifier of the new project.
id <- add_project(project_name = "test",verbose = TRUE) %>%
add_tasks_in_project(tasks =
c("First task",
"Second task")
)
id <- add_project(project_name = "test",verbose = TRUE) %>%
add_tasks_in_project(tasks =
c("First task",
"Second task")
)
id %>%
add_responsible_to_task("First task", add_responsible = "user2@mail.com")You can set multiple task at ones, you can set muliple responsibles, due dates and section if you use vectors, the order is important, and the matching will be done term by term
multiple tasks for one responsible with one due dates
id_proj %>%
add_tasks_in_project(tasks = c("t1","t2"),responsible = c("user1@mail.com"),due = today())multiple tasks for one responsible with multiple due dates
id_proj %>%
add_tasks_in_project(tasks = c("t1","t2"),responsible = c("user1@mail.com"),due = today() + days(1:2))multiple tasks for multiple responsible with on due dates on many section
id_proj %>%
add_tasks_in_project(tasks = c("t1","t2"),responsible = c("user1@mail.com","user2@mail.com"),due = lubridate::today(),section_name = c("S1","S2"))you can pass a data.frame using
add_tasks_in_project_from_df
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.