Skip to main content
GET
/
api
/
workspaces
/
{id}
/
board
/
column
/
{column}
Get Board Column
curl --request GET \
  --url http://localhost:8080/api/workspaces/{id}/board/column/{column} \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "title": "<string>",
      "description": "<string>",
      "status": "<string>",
      "position": 123,
      "priority": "p0",
      "tags": [
        "<string>"
      ],
      "pr_url": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "has_merge_conflict": false,
      "project_id": "<string>",
      "phase": 123,
      "blocked": false,
      "project_name": "<string>",
      "phase_name": "<string>",
      "questions": [],
      "task_runs": [],
      "latest_run_status": "<string>",
      "latest_run_error": "<string>",
      "latest_run_trigger": "<string>",
      "done_at": "<string>"
    }
  ],
  "total": 123,
  "has_more": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
column
string
required

Query Parameters

limit
integer
default:20
Required range: x >= 1
offset
integer
default:0
Required range: x >= 0
sort_by
enum<string>
Available options:
position,
title,
created_at,
priority
sort_dir
enum<string>
default:asc
Available options:
asc,
desc

Response

Successful Response

items
TaskResponse · object[]
required
total
integer
required
has_more
boolean
default:false
required