List Records

List records (tasks/items) with filtering and pagination.


POST /v1/list-records

List records (tasks/items) with filtering and pagination. Can filter by workspace, list, status, assignees, or tags. Returns a summary view — use get-record for full details including checklists and custom fields.

Request body

FieldTypeRequiredDescription
workspaceIdstringNoFilter by workspace ID. If omitted, lists across all workspaces.
listIdstringNoFilter by list ID
donebooleanNoFilter by completion status
archivedbooleanNoFilter by archived status
assigneeIdsstring[]NoFilter by assignee user IDs
tagIdsstring[]NoFilter by tag IDs
searchstringNoSearch by title
skipnumberNoOffset for pagination (default: 0)
limitnumberNoNumber of results, max 100 (default: 50)
{
  "workspaceId": "string",
  "listId": "string",
  "done": true,
  "archived": true,
  "assigneeIds": [
    "string"
  ],
  "tagIds": [
    "string"
  ],
  "search": "string",
  "skip": 0,
  "limit": 0
}

Response

{
  "items": [
    {
      "id": "string",
      "uid": "string",
      "title": "string",
      "done": true,
      "archived": true,
      "position": 0,
      "startedAt": "2024-01-01T00:00:00Z",
      "duedAt": "2024-01-01T00:00:00Z",
      "color": "string",
      "createdAt": "2024-01-01T00:00:00Z",
      "updatedAt": "2024-01-01T00:00:00Z",
      "todoList": {
        "id": "string",
        "title": "string"
      },
      "users": [
        {
          "id": "string",
          "firstName": "string",
          "lastName": "string",
          "email": "string"
        }
      ],
      "tags": [
        {
          "id": "string",
          "title": "string",
          "color": "string"
        }
      ]
    }
  ],
  "pageInfo": {
    "hasNextPage": true,
    "hasPreviousPage": true,
    "startCursor": "string",
    "endCursor": "string"
  }
}

Example

curl -X POST https://rest.blue.app/v1/list-records \
  -H "Authorization: Bearer $BLUE_TOKEN" \
  -H "blue-org-id: $BLUE_ORG_ID" \
  -H "Content-Type: application/json" \
  -d '{"workspaceId":"string","listId":"string","done":true,"archived":true,"assigneeIds":["string"],"tagIds":["string"],"search":"string","skip":0,"limit":0}'