diff --git a/gitlab4j-api/src/main/java/org/gitlab4j/api/BoardsApi.java b/gitlab4j-api/src/main/java/org/gitlab4j/api/BoardsApi.java
index 8a585dfc9..0390f1524 100644
--- a/gitlab4j-api/src/main/java/org/gitlab4j/api/BoardsApi.java
+++ b/gitlab4j-api/src/main/java/org/gitlab4j/api/BoardsApi.java
@@ -32,9 +32,11 @@ public BoardsApi(GitLabApi gitLabApi) {
      * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
      * @return a list of project's issue boards
      * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoards(Object)} instead
      */
+    @Deprecated
     public List<Board> getBoards(Object projectIdOrPath) throws GitLabApiException {
-        return (getBoards(projectIdOrPath, getDefaultPerPage()).all());
+        return getProjectIssueBoards(projectIdOrPath);
     }
 
     /**
@@ -47,8 +49,350 @@ public List<Board> getBoards(Object projectIdOrPath) throws GitLabApiException {
      * @param perPage the number of items per page
      * @return a list of project's Boards in the specified range
      * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoards(Object, int, int)} instead
      */
+    @Deprecated
     public List<Board> getBoards(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {
+        return getProjectIssueBoards(projectIdOrPath);
+    }
+
+    /**
+     * Get a Pager of all issue boards for the specified project.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param itemsPerPage the number of items per page
+     * @return a Pager of project's issue boards
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoards(Object, int)} instead
+     */
+    @Deprecated
+    public Pager<Board> getBoards(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException {
+        return getProjectIssueBoards(projectIdOrPath, itemsPerPage);
+    }
+
+    /**
+     * Get a Stream of all issue boards for the specified project.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @return a Stream of project's issue boards
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardsStream(Object)} instead
+     */
+    @Deprecated
+    public Stream<Board> getBoardsStream(Object projectIdOrPath) throws GitLabApiException {
+        return getProjectIssueBoardsStream(projectIdOrPath);
+    }
+
+    /**
+     * Get a single issue board.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @return a Board instance for the specified board ID
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoard(Object, Long)} instead
+     */
+    @Deprecated
+    public Board getBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+        return getProjectIssueBoard(projectIdOrPath, boardId);
+    }
+
+    /**
+     * Get an issue board as an Optional instance.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @return the Board instance for the specified board ID as an Optional instance
+     * @deprecated use {@link #getOptionalProjectIssueBoard(Object, Long)} instead
+     */
+    @Deprecated
+    public Optional<Board> getOptionalBoard(Object projectIdOrPath, Long boardId) {
+        return getOptionalProjectIssueBoard(projectIdOrPath, boardId);
+    }
+
+    /**
+     * Creates a new Issue Board.
+     *
+     * <pre><code>GitLab Endpoint: POST /projects/:id/boards</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param name the name for the new board
+     * @return the created Board instance
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #createProjectIssueBoard(Object, String)} instead
+     */
+    @Deprecated
+    public Board createBoard(Object projectIdOrPath, String name) throws GitLabApiException {
+        return createProjectIssueBoard(projectIdOrPath, name);
+    }
+
+    /**
+     * Updates an existing Issue Board.
+     *
+     * <pre><code>GitLab Endpoint: PUT /projects/:id/boards/:board_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
+     * @param boardId the ID of the board, required
+     * @param name the new name of the board, optional (can be null)
+     * @param hideBacklogList hide the Open list, optional (can be null)
+     * @param hideClosedList hide the Closed list, optional (can be null)
+     * @param assigneeId the assignee the board should be scoped to, optional (can be null)
+     * @param milestoneId the milestone the board should be scoped to, optional (can be null)
+     * @param labels a comma-separated list of label names which the board should be scoped to, optional (can be null)
+     * @param weight the weight range from 0 to 9, to which the board should be scoped to, optional (can be null)
+     * @return the updated Board instance
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #updateProjectIssueBoard(Object, Long, String, Boolean, Boolean, Long, Long, String, Integer)} instead
+     */
+    @Deprecated
+    public Board updateBoard(
+            Object projectIdOrPath,
+            Long boardId,
+            String name,
+            Boolean hideBacklogList,
+            Boolean hideClosedList,
+            Long assigneeId,
+            Long milestoneId,
+            String labels,
+            Integer weight)
+            throws GitLabApiException {
+        return updateProjectIssueBoard(
+                projectIdOrPath,
+                boardId,
+                name,
+                hideBacklogList,
+                hideClosedList,
+                assigneeId,
+                milestoneId,
+                labels,
+                weight);
+    }
+
+    /**
+     * Soft deletes an existing Issue Board.
+     *
+     * <pre><code>GitLab Endpoint: DELETE /projects/:id/boards/:board_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #deleteBoard(Object, Long)} instead
+     */
+    @Deprecated
+    public void deleteBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+        delete(Response.Status.NO_CONTENT, null, "projects", getProjectIdOrPath(projectIdOrPath), "boards", boardId);
+    }
+
+    /**
+     * Get a list of the board’s lists. Does not include open and closed lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @return a list of the issue board's lists
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardLists(Object, Long)} instead
+     */
+    @Deprecated
+    public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+        return getProjectIssueBoardLists(projectIdOrPath, boardId);
+    }
+
+    /**
+     * Get a list of the board’s lists for the specified project to using the specified page and per page setting.
+     * Does not include open and closed lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param page the page to get
+     * @param perPage the number of Boards per page
+     * @return a list of the issue board's lists in the specified range
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardLists(Object, Long, int, int)} instead
+     */
+    @Deprecated
+    public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int page, int perPage)
+            throws GitLabApiException {
+        return getProjectIssueBoardLists(projectIdOrPath, boardId, page, perPage);
+    }
+
+    /**
+     * Get a Pager of the board’s lists. Does not include open and closed lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param itemsPerPage the number of Board instances that will be fetched per page
+     * @return a Pager of the issue board's lists
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardLists(Object, Long, int)} instead
+     */
+    @Deprecated
+    public Pager<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int itemsPerPage)
+            throws GitLabApiException {
+        return getProjectIssueBoardLists(projectIdOrPath, boardId, itemsPerPage);
+    }
+
+    /**
+     * Get a Stream of the board’s lists. Does not include open and closed lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @return a Stream of the issue board's lists
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardsListsStream(Object, Long)} instead
+     */
+    @Deprecated
+    public Stream<BoardList> getBoardsListsStream(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+        return getProjectIssueBoardsListsStream(projectIdOrPath, boardId);
+    }
+
+    /**
+     * Get a single issue board list.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the board lists to get
+     * @return a BoardList instance for the specified board ID and list ID
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #getProjectIssueBoardList(Object, Long, Long)} instead
+     */
+    @Deprecated
+    public BoardList getBoardList(Object projectIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+        return getProjectIssueBoardList(projectIdOrPath, boardId, listId);
+    }
+
+    /**
+     * Get a single issue board list as an Optional instance.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the board lists to get
+     * @return a BoardList instance for the specified board ID and list ID as an Optional instance
+     * @deprecated use {@link #getOptionalProjectIssueBoardList(Object, Long, Long)} instead
+     */
+    @Deprecated
+    public Optional<BoardList> getOptionalBoardList(Object projectIdOrPath, Long boardId, Long listId) {
+        return getOptionalProjectIssueBoardList(projectIdOrPath, boardId, listId);
+    }
+
+    /**
+     * Creates a new Issue Board list.
+     *
+     * <pre><code>GitLab Endpoint: POST /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param labelId the ID of the label, optional (can be null)
+     * @param assigneeId The ID of a user. Premium and Ultimate only, optional (can be null)
+     * @param milestoneId The ID of a milestone. Premium and Ultimate only, optional (can be null)
+     * @param iterationId The ID of a milestone. Premium and Ultimate only, optional (can be null)
+     * @return the created BoardList instance
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #createProjectIssueBoardList(Object, Long, Long, Long, Long, Long)} instead
+     */
+    @Deprecated
+    public BoardList createBoardList(
+            Object projectIdOrPath, Long boardId, Long labelId, Long assigneeId, Long milestoneId, Long iterationId)
+            throws GitLabApiException {
+        return createProjectIssueBoardList(projectIdOrPath, boardId, labelId, assigneeId, milestoneId, iterationId);
+    }
+
+    /**
+     * Creates a new Issue Board list.
+     *
+     * <pre><code>GitLab Endpoint: POST /projects/:id/boards/:board_id/lists</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param labelId the ID of the label
+     * @return the created BoardList instance
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #createProjectIssueBoardList(Object, Long, Long, Long, Long, Long)} instead
+     */
+    @Deprecated
+    public BoardList createBoardList(Object projectIdOrPath, Long boardId, Long labelId) throws GitLabApiException {
+        return createProjectIssueBoardList(projectIdOrPath, boardId, labelId, null, null, null);
+    }
+
+    /**
+     * Updates an existing Issue Board list. This call is used to change list position.
+     *
+     * <pre><code>GitLab Endpoint: PUT /projects/:id/boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the list
+     * @param position the new position for the list
+     * @return the updated BoardList instance
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #updateProjectIssueBoardList(Object, Long, Long, Integer)} instead
+     */
+    @Deprecated
+    public BoardList updateBoardList(Object projectIdOrPath, Long boardId, Long listId, Integer position)
+            throws GitLabApiException {
+        return updateProjectIssueBoardList(projectIdOrPath, boardId, listId, position);
+    }
+
+    /**
+     * Soft deletes an existing Issue Board list. Only for admins and project owners.
+     *
+     * <pre><code>GitLab Endpoint: DELETE /projects/:id/boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the list
+     * @throws GitLabApiException if any exception occurs
+     * @deprecated use {@link #deleteProjectIssueBoardList(Object, Long, Long)} instead
+     */
+    @Deprecated
+    public void deleteBoardList(Object projectIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+        deleteProjectIssueBoardList(projectIdOrPath, boardId, listId);
+    }
+
+    /**
+     * Lists Issue Boards in the given project.
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @return a list of project's issue boards
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<Board> getProjectIssueBoards(Object projectIdOrPath) throws GitLabApiException {
+        return (getProjectIssueBoards(projectIdOrPath, getDefaultPerPage()).all());
+    }
+
+    /**
+     * Get all issue boards for the specified project using the specified page and per page setting
+     *
+     * <pre><code>GitLab Endpoint: GET /projects/:id/boards</code></pre>
+     *
+     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
+     * @param page the page to get
+     * @param perPage the number of items per page
+     * @return a list of project's Boards in the specified range
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<Board> getProjectIssueBoards(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {
         Response response = get(
                 jakarta.ws.rs.core.Response.Status.OK,
                 getPageQueryParams(page, perPage),
@@ -68,7 +412,7 @@ public List<Board> getBoards(Object projectIdOrPath, int page, int perPage) thro
      * @return a Pager of project's issue boards
      * @throws GitLabApiException if any exception occurs
      */
-    public Pager<Board> getBoards(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException {
+    public Pager<Board> getProjectIssueBoards(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException {
         return (new Pager<Board>(
                 this, Board.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "boards"));
     }
@@ -82,8 +426,8 @@ public Pager<Board> getBoards(Object projectIdOrPath, int itemsPerPage) throws G
      * @return a Stream of project's issue boards
      * @throws GitLabApiException if any exception occurs
      */
-    public Stream<Board> getBoardsStream(Object projectIdOrPath) throws GitLabApiException {
-        return (getBoards(projectIdOrPath, getDefaultPerPage()).stream());
+    public Stream<Board> getProjectIssueBoardsStream(Object projectIdOrPath) throws GitLabApiException {
+        return (getProjectIssueBoards(projectIdOrPath, getDefaultPerPage()).stream());
     }
 
     /**
@@ -96,7 +440,7 @@ public Stream<Board> getBoardsStream(Object projectIdOrPath) throws GitLabApiExc
      * @return a Board instance for the specified board ID
      * @throws GitLabApiException if any exception occurs
      */
-    public Board getBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+    public Board getProjectIssueBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
         Response response =
                 get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "boards", boardId);
         return (response.readEntity(Board.class));
@@ -111,9 +455,9 @@ public Board getBoard(Object projectIdOrPath, Long boardId) throws GitLabApiExce
      * @param boardId the ID of the board
      * @return the Board instance for the specified board ID as an Optional instance
      */
-    public Optional<Board> getOptionalBoard(Object projectIdOrPath, Long boardId) {
+    public Optional<Board> getOptionalProjectIssueBoard(Object projectIdOrPath, Long boardId) {
         try {
-            return (Optional.ofNullable(getBoard(projectIdOrPath, boardId)));
+            return (Optional.ofNullable(getProjectIssueBoard(projectIdOrPath, boardId)));
         } catch (GitLabApiException glae) {
             return (GitLabApi.createOptionalFromException(glae));
         }
@@ -129,7 +473,7 @@ public Optional<Board> getOptionalBoard(Object projectIdOrPath, Long boardId) {
      * @return the created Board instance
      * @throws GitLabApiException if any exception occurs
      */
-    public Board createBoard(Object projectIdOrPath, String name) throws GitLabApiException {
+    public Board createProjectIssueBoard(Object projectIdOrPath, String name) throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm().withParam("name", name, true);
         Response response = post(
                 Response.Status.CREATED, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "boards");
@@ -153,7 +497,7 @@ public Board createBoard(Object projectIdOrPath, String name) throws GitLabApiEx
      * @return the updated Board instance
      * @throws GitLabApiException if any exception occurs
      */
-    public Board updateBoard(
+    public Board updateProjectIssueBoard(
             Object projectIdOrPath,
             Long boardId,
             String name,
@@ -192,7 +536,7 @@ public Board updateBoard(
      * @param boardId the ID of the board
      * @throws GitLabApiException if any exception occurs
      */
-    public void deleteBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+    public void deleteProjectIssueBoard(Object projectIdOrPath, Long boardId) throws GitLabApiException {
         delete(Response.Status.NO_CONTENT, null, "projects", getProjectIdOrPath(projectIdOrPath), "boards", boardId);
     }
 
@@ -206,8 +550,9 @@ public void deleteBoard(Object projectIdOrPath, Long boardId) throws GitLabApiEx
      * @return a list of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId) throws GitLabApiException {
-        return (getBoardLists(projectIdOrPath, boardId, getDefaultPerPage()).all());
+    public List<BoardList> getProjectIssueBoardLists(Object projectIdOrPath, Long boardId) throws GitLabApiException {
+        return (getProjectIssueBoardLists(projectIdOrPath, boardId, getDefaultPerPage())
+                .all());
     }
 
     /**
@@ -223,7 +568,7 @@ public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId) throw
      * @return a list of the issue board's lists in the specified range
      * @throws GitLabApiException if any exception occurs
      */
-    public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int page, int perPage)
+    public List<BoardList> getProjectIssueBoardLists(Object projectIdOrPath, Long boardId, int page, int perPage)
             throws GitLabApiException {
         Response response = get(
                 jakarta.ws.rs.core.Response.Status.OK,
@@ -247,7 +592,7 @@ public List<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int p
      * @return a Pager of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public Pager<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int itemsPerPage)
+    public Pager<BoardList> getProjectIssueBoardLists(Object projectIdOrPath, Long boardId, int itemsPerPage)
             throws GitLabApiException {
         return (new Pager<BoardList>(
                 this,
@@ -271,8 +616,9 @@ public Pager<BoardList> getBoardLists(Object projectIdOrPath, Long boardId, int
      * @return a Stream of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public Stream<BoardList> getBoardsListsStream(Object projectIdOrPath, Long boardId) throws GitLabApiException {
-        return (getBoardLists(projectIdOrPath, boardId, getDefaultPerPage()).stream());
+    public Stream<BoardList> getProjectIssueBoardsListsStream(Object projectIdOrPath, Long boardId)
+            throws GitLabApiException {
+        return (getProjectIssueBoardLists(projectIdOrPath, boardId, getDefaultPerPage()).stream());
     }
 
     /**
@@ -286,7 +632,8 @@ public Stream<BoardList> getBoardsListsStream(Object projectIdOrPath, Long board
      * @return a BoardList instance for the specified board ID and list ID
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList getBoardList(Object projectIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+    public BoardList getProjectIssueBoardList(Object projectIdOrPath, Long boardId, Long listId)
+            throws GitLabApiException {
         Response response = get(
                 Response.Status.OK,
                 null,
@@ -309,9 +656,9 @@ public BoardList getBoardList(Object projectIdOrPath, Long boardId, Long listId)
      * @param listId the ID of the board lists to get
      * @return a BoardList instance for the specified board ID and list ID as an Optional instance
      */
-    public Optional<BoardList> getOptionalBoardList(Object projectIdOrPath, Long boardId, Long listId) {
+    public Optional<BoardList> getOptionalProjectIssueBoardList(Object projectIdOrPath, Long boardId, Long listId) {
         try {
-            return (Optional.ofNullable(getBoardList(projectIdOrPath, boardId, listId)));
+            return (Optional.ofNullable(getProjectIssueBoardList(projectIdOrPath, boardId, listId)));
         } catch (GitLabApiException glae) {
             return (GitLabApi.createOptionalFromException(glae));
         }
@@ -331,7 +678,7 @@ public Optional<BoardList> getOptionalBoardList(Object projectIdOrPath, Long boa
      * @return the created BoardList instance
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList createBoardList(
+    public BoardList createProjectIssueBoardList(
             Object projectIdOrPath, Long boardId, Long labelId, Long assigneeId, Long milestoneId, Long iterationId)
             throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm()
@@ -350,23 +697,6 @@ public BoardList createBoardList(
         return (response.readEntity(BoardList.class));
     }
 
-    /**
-     * Creates a new Issue Board list.
-     *
-     * <pre><code>GitLab Endpoint: POST /projects/:id/boards/:board_id/lists</code></pre>
-     *
-     * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance
-     * @param boardId the ID of the board
-     * @param labelId the ID of the label
-     * @return the created BoardList instance
-     * @throws GitLabApiException if any exception occurs
-     * @deprecated use {@link #createBoardList(Object, Long, Long, Long, Long, Long)} instead
-     */
-    @Deprecated
-    public BoardList createBoardList(Object projectIdOrPath, Long boardId, Long labelId) throws GitLabApiException {
-        return createBoardList(projectIdOrPath, boardId, labelId, null, null, null);
-    }
-
     /**
      * Updates an existing Issue Board list. This call is used to change list position.
      *
@@ -379,7 +709,7 @@ public BoardList createBoardList(Object projectIdOrPath, Long boardId, Long labe
      * @return the updated BoardList instance
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList updateBoardList(Object projectIdOrPath, Long boardId, Long listId, Integer position)
+    public BoardList updateProjectIssueBoardList(Object projectIdOrPath, Long boardId, Long listId, Integer position)
             throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm().withParam("position", position, true);
         Response response = putWithFormData(
@@ -404,7 +734,8 @@ public BoardList updateBoardList(Object projectIdOrPath, Long boardId, Long list
      * @param listId the ID of the list
      * @throws GitLabApiException if any exception occurs
      */
-    public void deleteBoardList(Object projectIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+    public void deleteProjectIssueBoardList(Object projectIdOrPath, Long boardId, Long listId)
+            throws GitLabApiException {
         delete(
                 Response.Status.NO_CONTENT,
                 null,
@@ -425,8 +756,8 @@ public void deleteBoardList(Object projectIdOrPath, Long boardId, Long listId) t
      * @return a list of group's issue boards
      * @throws GitLabApiException if any exception occurs
      */
-    public List<Board> getGroupBoards(Object groupIdOrPath) throws GitLabApiException {
-        return (getGroupBoards(groupIdOrPath, getDefaultPerPage()).all());
+    public List<Board> getGroupIssueBoards(Object groupIdOrPath) throws GitLabApiException {
+        return (getGroupIssueBoards(groupIdOrPath, getDefaultPerPage()).all());
     }
 
     /**
@@ -440,7 +771,7 @@ public List<Board> getGroupBoards(Object groupIdOrPath) throws GitLabApiExceptio
      * @return a list of group's Boards in the specified range
      * @throws GitLabApiException if any exception occurs
      */
-    public List<Board> getGroupBoards(Object groupIdOrPath, int page, int perPage) throws GitLabApiException {
+    public List<Board> getGroupIssueBoards(Object groupIdOrPath, int page, int perPage) throws GitLabApiException {
         Response response = get(
                 jakarta.ws.rs.core.Response.Status.OK,
                 getPageQueryParams(page, perPage),
@@ -460,7 +791,7 @@ public List<Board> getGroupBoards(Object groupIdOrPath, int page, int perPage) t
      * @return a Pager of group's issue boards
      * @throws GitLabApiException if any exception occurs
      */
-    public Pager<Board> getGroupBoards(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException {
+    public Pager<Board> getGroupIssueBoards(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException {
         return (new Pager<Board>(
                 this, Board.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "boards"));
     }
@@ -474,8 +805,8 @@ public Pager<Board> getGroupBoards(Object groupIdOrPath, int itemsPerPage) throw
      * @return a Stream of group's issue boards
      * @throws GitLabApiException if any exception occurs
      */
-    public Stream<Board> getGroupBoardsStream(Object groupIdOrPath) throws GitLabApiException {
-        return (getGroupBoards(groupIdOrPath, getDefaultPerPage()).stream());
+    public Stream<Board> getGroupIssueBoardsStream(Object groupIdOrPath) throws GitLabApiException {
+        return (getGroupIssueBoards(groupIdOrPath, getDefaultPerPage()).stream());
     }
 
     /**
@@ -488,7 +819,7 @@ public Stream<Board> getGroupBoardsStream(Object groupIdOrPath) throws GitLabApi
      * @return a Board instance for the specified board ID
      * @throws GitLabApiException if any exception occurs
      */
-    public Board getGroupBoard(Object groupIdOrPath, Long boardId) throws GitLabApiException {
+    public Board getGroupIssueBoard(Object groupIdOrPath, Long boardId) throws GitLabApiException {
         Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "boards", boardId);
         return (response.readEntity(Board.class));
     }
@@ -502,9 +833,9 @@ public Board getGroupBoard(Object groupIdOrPath, Long boardId) throws GitLabApiE
      * @param boardId the ID of the board
      * @return the Board instance for the specified board ID as an Optional instance
      */
-    public Optional<Board> getOptionalGroupBoard(Object groupIdOrPath, Long boardId) {
+    public Optional<Board> getOptionalGroupIssueBoard(Object groupIdOrPath, Long boardId) {
         try {
-            return (Optional.ofNullable(getGroupBoard(groupIdOrPath, boardId)));
+            return (Optional.ofNullable(getGroupIssueBoard(groupIdOrPath, boardId)));
         } catch (GitLabApiException glae) {
             return (GitLabApi.createOptionalFromException(glae));
         }
@@ -520,7 +851,7 @@ public Optional<Board> getOptionalGroupBoard(Object groupIdOrPath, Long boardId)
      * @return the created Board instance
      * @throws GitLabApiException if any exception occurs
      */
-    public Board createGroupBoard(Object groupIdOrPath, String name) throws GitLabApiException {
+    public Board createGroupIssueBoard(Object groupIdOrPath, String name) throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm().withParam("name", name, true);
         Response response =
                 post(Response.Status.CREATED, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "boards");
@@ -544,7 +875,7 @@ public Board createGroupBoard(Object groupIdOrPath, String name) throws GitLabAp
      * @return the updated Board instance
      * @throws GitLabApiException if any exception occurs
      */
-    public Board updateGroupBoard(
+    public Board updateGroupIssueBoard(
             Object groupIdOrPath,
             Long boardId,
             String name,
@@ -577,7 +908,7 @@ public Board updateGroupBoard(
      * @param boardId the ID of the board
      * @throws GitLabApiException if any exception occurs
      */
-    public void deleteGroupBoard(Object groupIdOrPath, Long boardId) throws GitLabApiException {
+    public void deleteGroupIssueBoard(Object groupIdOrPath, Long boardId) throws GitLabApiException {
         delete(Response.Status.NO_CONTENT, null, "groups", getGroupIdOrPath(groupIdOrPath), "boards", boardId);
     }
 
@@ -591,8 +922,9 @@ public void deleteGroupBoard(Object groupIdOrPath, Long boardId) throws GitLabAp
      * @return a list of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public List<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId) throws GitLabApiException {
-        return (getGroupBoardLists(groupIdOrPath, boardId, getDefaultPerPage()).all());
+    public List<BoardList> getGroupIssueBoardLists(Object groupIdOrPath, Long boardId) throws GitLabApiException {
+        return (getGroupIssueBoardLists(groupIdOrPath, boardId, getDefaultPerPage())
+                .all());
     }
 
     /**
@@ -608,7 +940,7 @@ public List<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId) th
      * @return a list of the issue board's lists in the specified range
      * @throws GitLabApiException if any exception occurs
      */
-    public List<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId, int page, int perPage)
+    public List<BoardList> getGroupIssueBoardLists(Object groupIdOrPath, Long boardId, int page, int perPage)
             throws GitLabApiException {
         Response response = get(
                 jakarta.ws.rs.core.Response.Status.OK,
@@ -632,7 +964,7 @@ public List<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId, in
      * @return a Pager of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public Pager<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId, int itemsPerPage)
+    public Pager<BoardList> getGroupIssueBoardLists(Object groupIdOrPath, Long boardId, int itemsPerPage)
             throws GitLabApiException {
         return (new Pager<BoardList>(
                 this,
@@ -656,8 +988,9 @@ public Pager<BoardList> getGroupBoardLists(Object groupIdOrPath, Long boardId, i
      * @return a Stream of the issue board's lists
      * @throws GitLabApiException if any exception occurs
      */
-    public Stream<BoardList> getGroupBoardsListsStream(Object groupIdOrPath, Long boardId) throws GitLabApiException {
-        return (getGroupBoardLists(groupIdOrPath, boardId, getDefaultPerPage()).stream());
+    public Stream<BoardList> getGroupIssueBoardsListsStream(Object groupIdOrPath, Long boardId)
+            throws GitLabApiException {
+        return (getGroupIssueBoardLists(groupIdOrPath, boardId, getDefaultPerPage()).stream());
     }
 
     /**
@@ -671,7 +1004,7 @@ public Stream<BoardList> getGroupBoardsListsStream(Object groupIdOrPath, Long bo
      * @return a BoardList instance for the specified board ID and list ID
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList getGroupBoardList(Object groupIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+    public BoardList getGroupIssueBoardList(Object groupIdOrPath, Long boardId, Long listId) throws GitLabApiException {
         Response response = get(
                 Response.Status.OK,
                 null,
@@ -694,9 +1027,9 @@ public BoardList getGroupBoardList(Object groupIdOrPath, Long boardId, Long list
      * @param listId the ID of the board lists to get
      * @return a BoardList instance for the specified board ID and list ID as an Optional instance
      */
-    public Optional<BoardList> getOptionalGroupBoardList(Object groupIdOrPath, Long boardId, Long listId) {
+    public Optional<BoardList> getOptionalGroupIssueBoardList(Object groupIdOrPath, Long boardId, Long listId) {
         try {
-            return (Optional.ofNullable(getGroupBoardList(groupIdOrPath, boardId, listId)));
+            return (Optional.ofNullable(getGroupIssueBoardList(groupIdOrPath, boardId, listId)));
         } catch (GitLabApiException glae) {
             return (GitLabApi.createOptionalFromException(glae));
         }
@@ -716,7 +1049,7 @@ public Optional<BoardList> getOptionalGroupBoardList(Object groupIdOrPath, Long
      * @return the created BoardList instance
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList createGroupBoardList(
+    public BoardList createGroupIssueBoardList(
             Object groupIdOrPath, Long boardId, Long labelId, Long assigneeId, Long milestoneId, Long iterationId)
             throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm()
@@ -747,7 +1080,7 @@ public BoardList createGroupBoardList(
      * @return the updated BoardList instance
      * @throws GitLabApiException if any exception occurs
      */
-    public BoardList updateGroupBoardList(Object groupIdOrPath, Long boardId, Long listId, Integer position)
+    public BoardList updateGroupIssueBoardList(Object groupIdOrPath, Long boardId, Long listId, Integer position)
             throws GitLabApiException {
         GitLabApiForm formData = new GitLabApiForm().withParam("position", position, true);
         Response response = putWithFormData(
@@ -772,7 +1105,7 @@ public BoardList updateGroupBoardList(Object groupIdOrPath, Long boardId, Long l
      * @param listId the ID of the list
      * @throws GitLabApiException if any exception occurs
      */
-    public void deleteGroupBoardList(Object groupIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+    public void deleteGroupIssueBoardList(Object groupIdOrPath, Long boardId, Long listId) throws GitLabApiException {
         delete(
                 Response.Status.NO_CONTENT,
                 null,
@@ -783,4 +1116,221 @@ public void deleteGroupBoardList(Object groupIdOrPath, Long boardId, Long listId
                 "lists",
                 listId);
     }
+
+    /**
+     * Lists epic boards in the given group.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @return a list of group's epic boards
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<Board> getGroupEpicBoards(Object groupIdOrPath) throws GitLabApiException {
+        return (getGroupEpicBoards(groupIdOrPath, getDefaultPerPage()).all());
+    }
+
+    /**
+     * Get all epic boards for the specified group using the specified page and per page setting
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param page the page to get
+     * @param perPage the number of items per page
+     * @return a list of group's Boards in the specified range
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<Board> getGroupEpicBoards(Object groupIdOrPath, int page, int perPage) throws GitLabApiException {
+        Response response = get(
+                jakarta.ws.rs.core.Response.Status.OK,
+                getPageQueryParams(page, perPage),
+                "groups",
+                getGroupIdOrPath(groupIdOrPath),
+                "epic_boards");
+        return (response.readEntity(new GenericType<List<Board>>() {}));
+    }
+
+    /**
+     * Get a Pager of all epic boards for the specified group.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param itemsPerPage the number of items per page
+     * @return a Pager of group's epic boards
+     * @throws GitLabApiException if any exception occurs
+     */
+    public Pager<Board> getGroupEpicBoards(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException {
+        return (new Pager<Board>(
+                this, Board.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "epic_boards"));
+    }
+
+    /**
+     * Get a Stream of all epic boards for the specified group.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @return a Stream of group's epic boards
+     * @throws GitLabApiException if any exception occurs
+     */
+    public Stream<Board> getGroupEpicBoardsStream(Object groupIdOrPath) throws GitLabApiException {
+        return (getGroupEpicBoards(groupIdOrPath, getDefaultPerPage()).stream());
+    }
+
+    /**
+     * Get a single epic board.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @return a Board instance for the specified board ID
+     * @throws GitLabApiException if any exception occurs
+     */
+    public Board getGroupEpicBoard(Object groupIdOrPath, Long boardId) throws GitLabApiException {
+        Response response =
+                get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "epic_boards", boardId);
+        return (response.readEntity(Board.class));
+    }
+
+    /**
+     * Get an epic board as an Optional instance.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @return the Board instance for the specified board ID as an Optional instance
+     */
+    public Optional<Board> getOptionalGroupEpicBoard(Object groupIdOrPath, Long boardId) {
+        try {
+            return (Optional.ofNullable(getGroupEpicBoard(groupIdOrPath, boardId)));
+        } catch (GitLabApiException glae) {
+            return (GitLabApi.createOptionalFromException(glae));
+        }
+    }
+
+    /**
+     * Get a list of the board’s lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @return a list of the epic board's lists
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<BoardList> getGroupEpicBoardLists(Object groupIdOrPath, Long boardId) throws GitLabApiException {
+        return (getGroupEpicBoardLists(groupIdOrPath, boardId, getDefaultPerPage())
+                .all());
+    }
+
+    /**
+     * Get a list of the board’s lists for the specified group to using the specified page and per page setting.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @param page the page to get
+     * @param perPage the number of Boards per page
+     * @return a list of the epic board's lists in the specified range
+     * @throws GitLabApiException if any exception occurs
+     */
+    public List<BoardList> getGroupEpicBoardLists(Object groupIdOrPath, Long boardId, int page, int perPage)
+            throws GitLabApiException {
+        Response response = get(
+                jakarta.ws.rs.core.Response.Status.OK,
+                getPageQueryParams(page, perPage),
+                "groups",
+                getGroupIdOrPath(groupIdOrPath),
+                "epic_boards",
+                boardId,
+                "lists");
+        return (response.readEntity(new GenericType<List<BoardList>>() {}));
+    }
+
+    /**
+     * Get a Pager of the board’s lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @param itemsPerPage the number of Board instances that will be fetched per page
+     * @return a Pager of the epic board's lists
+     * @throws GitLabApiException if any exception occurs
+     */
+    public Pager<BoardList> getGroupEpicBoardLists(Object groupIdOrPath, Long boardId, int itemsPerPage)
+            throws GitLabApiException {
+        return (new Pager<BoardList>(
+                this,
+                BoardList.class,
+                itemsPerPage,
+                null,
+                "groups",
+                getGroupIdOrPath(groupIdOrPath),
+                "epic_boards",
+                boardId,
+                "lists"));
+    }
+
+    /**
+     * Get a Stream of the board’s lists.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @return a Stream of the epic board's lists
+     * @throws GitLabApiException if any exception occurs
+     */
+    public Stream<BoardList> getGroupEpicBoardsListsStream(Object groupIdOrPath, Long boardId)
+            throws GitLabApiException {
+        return (getGroupEpicBoardLists(groupIdOrPath, boardId, getDefaultPerPage()).stream());
+    }
+
+    /**
+     * Get a single epic board list.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the board lists to get
+     * @return a BoardList instance for the specified board ID and list ID
+     * @throws GitLabApiException if any exception occurs
+     */
+    public BoardList getGroupEpicBoardList(Object groupIdOrPath, Long boardId, Long listId) throws GitLabApiException {
+        Response response = get(
+                Response.Status.OK,
+                null,
+                "groups",
+                getGroupIdOrPath(groupIdOrPath),
+                "epic_boards",
+                boardId,
+                "lists",
+                listId);
+        return (response.readEntity(BoardList.class));
+    }
+
+    /**
+     * Get a single epic board list as an Optional instance.
+     *
+     * <pre><code>GitLab Endpoint: GET /groups/:id/epic_boards/:board_id/lists/:list_id</code></pre>
+     *
+     * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance
+     * @param boardId the ID of the board
+     * @param listId the ID of the board lists to get
+     * @return a BoardList instance for the specified board ID and list ID as an Optional instance
+     */
+    public Optional<BoardList> getOptionalGroupEpicBoardList(Object groupIdOrPath, Long boardId, Long listId) {
+        try {
+            return (Optional.ofNullable(getGroupEpicBoardList(groupIdOrPath, boardId, listId)));
+        } catch (GitLabApiException glae) {
+            return (GitLabApi.createOptionalFromException(glae));
+        }
+    }
 }
diff --git a/gitlab4j-models/src/main/java/org/gitlab4j/api/models/BoardList.java b/gitlab4j-models/src/main/java/org/gitlab4j/api/models/BoardList.java
index 516facfe5..3e511fe59 100644
--- a/gitlab4j-models/src/main/java/org/gitlab4j/api/models/BoardList.java
+++ b/gitlab4j-models/src/main/java/org/gitlab4j/api/models/BoardList.java
@@ -16,6 +16,7 @@ public class BoardList implements Serializable {
     private Integer maxIssueCount;
     private Integer maxIssueWeight;
     private Integer limitMetric;
+    private String listType;
 
     public Long getId() {
         return id;
@@ -89,6 +90,14 @@ public void setLimitMetric(Integer limitMetric) {
         this.limitMetric = limitMetric;
     }
 
+    public String getListType() {
+        return listType;
+    }
+
+    public void setListType(String listType) {
+        this.listType = listType;
+    }
+
     @Override
     public String toString() {
         return (JacksonJson.toJsonString(this));
diff --git a/gitlab4j-models/src/test/java/org/gitlab4j/models/TestGitLabApiBeans.java b/gitlab4j-models/src/test/java/org/gitlab4j/models/TestGitLabApiBeans.java
index 7db61992c..e14484503 100644
--- a/gitlab4j-models/src/test/java/org/gitlab4j/models/TestGitLabApiBeans.java
+++ b/gitlab4j-models/src/test/java/org/gitlab4j/models/TestGitLabApiBeans.java
@@ -89,6 +89,12 @@ public void testGroupBoard() throws Exception {
         assertTrue(compareJson(boards, "group-board.json"));
     }
 
+    @Test
+    public void testGroupEpicBoard() throws Exception {
+        Board board = unmarshalResource(Board.class, "group-epic-board.json");
+        assertTrue(compareJson(board, "group-epic-board.json"));
+    }
+
     @Test
     public void testBranch() throws Exception {
 
diff --git a/gitlab4j-models/src/test/resources/org/gitlab4j/models/group-epic-board.json b/gitlab4j-models/src/test/resources/org/gitlab4j/models/group-epic-board.json
new file mode 100644
index 000000000..7c5440ea3
--- /dev/null
+++ b/gitlab4j-models/src/test/resources/org/gitlab4j/models/group-epic-board.json
@@ -0,0 +1,35 @@
+{
+    "id": 14,
+    "name": "Development",
+    "hide_backlog_list": false,
+    "hide_closed_list": false,
+    "group": {
+        "id": 5,
+        "web_url": "https://example.gitlab.com/groups/a-group/main",
+        "name": "a group"
+    },
+    "labels": [],
+    "lists": [
+        {
+            "id": 33,
+            "list_type": "backlog"
+        },
+        {
+            "id": 35,
+            "label": {
+                "id": 1410,
+                "name": "Priority::Blocker",
+                "description": "a descriptioon",
+                "description_html": "a descriptioon",
+                "text_color": "#FFFFFF",
+                "color": "#ed9121"
+            },
+            "position": 0,
+            "list_type": "label"
+        },
+        {
+            "id": 34,
+            "list_type": "closed"
+        }
+    ]
+}