Skip to main content

Create a list

Create a list.

Parameters

title
string
required
Title of the list.

Returns

Returns the created list object. Throws an error if some parameters are not valid.

post
/api/boards/{id}/lists
curl -X POST https://{workspace}.kitchen.co/api/boards/{id}/lists \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
{
"board": "tskb_716ac736726a47f2f243c60c",
"created_at": "2024-03-21T07:45:14+00:00",
"id": "tskl_effc45e91b837cff9b5da13a",
"title": "The list title",
"updated_at": "2024-03-21T07:45:14+00:00"
}