Skip to main content

The Card object

The Board Management API is a powerful and flexible RESTful API designed to streamline the management of cards on your digital boards. Whatever you're building this API provides all the essential features you need to create, update, organize, and delete cards 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 card 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 cards like a pro!

Attributes

assignee
nullable string
expandable
ID of the assignee user.
author
string
expandable
ID of the user that created the card.
board
string
ID of the board in which is the card.
completed
boolean
Whether the card is completed.
completer
nullable string
expandable
ID of the user that completed the card.
completed_at
nullable string
Time at which the card was completed.
created_at
string
Time at which the board was created.
description
nullable string
The description of the card.
due_at
nullable string
Time at which the card is due.
due_reminder
nullable string
Time at which a reminder that the card 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 card.
milestone
nullable string
expandable
The card milestone.
remaining_minutes_estimate
integer
The estimate time left of the card in minutes.
list
string
expandable
The card list.
start_at
string
Time at which the card will start.
title
string
The card title.
updated_at
string
Time at which the card was last updated.
The Card 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 card 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 card title",
"updated_at": "2024-03-21T07:52:35+00:00"
}