Boards
List board items
List a board's items (tasks).
Pass active_only=true to return only items updated within the retention window whose status is non-terminal (the AI's "active memory" view). Filter by status label or updated_since. Requires boards:read.
Request
curl -X GET "https://api.blueticks.co/v1/boards//items"{
"success": true,
"data": [
{
"item_id": "string",
"text": "string",
"status": {
"label": "string",
"bgcolor": "string"
},
"priority": {
"label": "string",
"bgcolor": "string"
},
"due_date": "string",
"cells": {
"property1": "string",
"property2": "string"
},
"source": {
"chat_id": "string",
"chat_name": "string",
"message_key": "string",
"excerpt": "string",
"extracted_at": 0
},
"confidence": 0,
"last_seen_at": 0,
"web_url": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
],
"limit": 0,
"skip": 0,
"total": 0
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"requestId": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Path Parameters
boardId*string
Query Parameters
status?string
Filter by denormalized status label.
order?string
Sort direction by timestamp: asc (oldest first) or desc (newest first, default).
Default
"desc"Value in
"asc" | "desc"active_only?boolean
When true: only items updated within the retention window whose status is non-terminal and not deleted.
Default
falseupdated_since?string
ISO 8601 / epoch-ms cutoff; only items updated at or after this time.
skip?integer
Number of items to skip before the page (default 0).
Default
0Range
0 <= valuelimit?integer
Page size (default 50, max 200).
Default
50Range
1 <= value <= 200Response
Response Body
application/json
application/json