Skip to content

Board Tasks

GET
/v1/Boards/{id}/tasks

Get tasks on a board

Parameters

Path Parameters

id*integer

Board Id

Example 1

Query Parameters

Countinteger

Page Size default is 100 and max 10000

Example 200
Pageinteger

Page default and start value is 1

Example 2
Fromstring

Filter BoardDate. Greater than

Example 2023-12-01T00:00:00Z
Tostring

Filter BoardDate. Lesser than

Example 2023-12-24T00:00:00Z

Responses

OK

application/json
JSON
{
"total": 0,
"page": 0,
"values": [
{
"id": 0,
"parentId": 0,
"lastModified": "string",
"responsibleUser": "string",
"externalId": "string",
"boardId": 0,
"title": "string",
"description": "string",
"status": "string",
"responsibleUserId": "string",
"dueDate": "string",
"startDate": "string",
"rowCategoryId": 0,
"columnCategoryId": 0,
"tags": [
"string"
]
}
]
}