Use the To-Do Service to post common tasks and receive reminders for those tasks.
Before you can begin to perform common tasks with the To-Do Service, you must set up your development system. Review the Before you start a tutorial page to get started.
[!NOTE] Preparation to start a tutorial takes approximately 20 minutes to complete.
To begin posting your tasks to the service, you must add your users to the service first.
The following tasks for the To-Do Service are available soon:
ID
user_ID
The user resource contains information for all users of the service.
The following is an example of the user resource:
{
"last_name": "Smith",
"first_name": "Ferdinand",
"email": "f.smith@example.com",
"id": 1
}
The task resource contains information for all tasks in the service.
The following is an example of the task resource:
{
"user_id": 1,
"title": "Grocery shopping",
"description": "eggs, bacon, gummy bears",
"due_date": "2025-02-20T17:00",
"warning": "-10",
"id": 1
}