action gitlab_get_v3_projects_id_boards_board_id_lists { label: "Get the lists of a project board" description: "Does not include `backlog` and `done` lists. This feature was introduced in 8.13" provider: gitlab method: GET path: "/v3/projects/{id}/boards/{board_id}/lists" encoding: json input: { type: "object" properties: { board_id: { type: "string" } id: { type: "string" } } required: ["board_id", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }