task
resource
Base endpoint:
{server_url}/tasks
Contains information about tasks stored for the users of the service.
To have a task in the service, the user must be added to the service first. Learn more about the user resource.
Resource properties
Sample task
resource
{
"userId": 1,
"title": "Grocery shopping",
"description": "eggs, bacon, gummy bears",
"dueDate": "2025-02-20T17:00",
"warning": "10",
"id": 1
}
Property name | Type | Description |
---|---|---|
userId | number | The ID of the user resource to which this task is assigned |
title | string | The title or short description of the task |
description | string | The long description of the task |
dueDate | string | The ISO 8601 format of the date and time the task is due |
warning | number | The number of minutes before the dueDate to alert the user of the task. This must be a positive integer. |
id | number | The task’s unique record ID |