v1

latestOpenAPI 3.0.32026-07-12101432.4 KB
Kanban

getKanbanBoards

Returns a list of all Kanban boards accessible to the authenticated user.

Use the filter query parameter to narrow results to boards the user owns (owned) or boards shared with them (shared). When omitted, all accessible boards are returned.

get/v1/kanban/boards

Query parameters

filter'owned' | 'shared'

Filter boards by ownership type. If not provided, returns all accessible boards.

Response

Successfully retrieved boards

idstring
titlestring
descriptionstring
created_atstring date-time
updated_atstring date-time
created_bystring
org_idstring
updated_bystring
shared_withstring[]
shared_with_orgboolean
ownersstring[]

Array of user IDs who have full ownership rights for this board (view, edit, delete)

Example response

[
  {
    "title": "Board 1",
    "description": "Board description"
  }
]