The Task object
The Board Management API is a powerful and flexible RESTful API designed to streamline the management of tasks on your digital boards. Whatever you're building this API provides all the essential features you need to create, update, organize, and delete tasks with ease.
To get started with the Board Management API, you'll need to authenticate your application and follow our detailed documentation on how to use each endpoint effectively. Whether you're looking to integrate basic task management features or build complex workflows, our API is designed to be intuitive and developer-friendly.
Explore the API documentation to begin managing your boards and tasks like a pro!
Attributes
assignee
nullable string
ID of the assignee user.
author
string
ID of the user that created the task.
board
string
ID of the board in which is the task.
completed
boolean
Whether the task is completed.
completer
nullable string
ID of the user that completed the task.
completed_at
nullable string
Time at which the task was completed.
created_at
string
Time at which the board was created.
description
nullable string
The description of the task.
due_at
nullable string
Time at which the task is due.
due_reminder
nullable string
Time at which a reminder that the task is due will be sent.
due_reminder_sent_at
nullable string
Time at which the due reminder was sent.
id
string
Unique identifier for the task.
milestone
nullable string
The task milestone.
remaining_minutes_estimate
integer
The estimate time left of the task in minutes.
list
string
The task list.
start_at
string
Time at which the task will start.
title
string
The task title.
updated_at
string
Time at which the task was last updated.
The Task object
{
"assignee": "u_c3715664badcadf714053dd0",
"author": "u_e2e07ccb713c2afe739a7c04",
"board": "tskb_b208f0bf2d21fa7fd5a0a577",
"completed": 0,
"completed_at": null,
"completer": null,
"created_at": "2024-03-21T07:52:35+00:00",
"description": "The task description",
"due_at": null,
"due_reminder": null,
"due_reminder_sent_at": null,
"id": "tsk_9bbcb52099a37312fbff58c8",
"milestone": "mst_c26f8070cddd1e226f4f79b3",
"remaining_minutes_estimate": null,
"list": "tskl_baac852506fc20c0a614b5f6",
"start_at": null,
"title": "The task title",
"updated_at": "2024-03-21T07:52:35+00:00"
}