Skip to content

List all epic boards in a group

GET
/api/v4/groups/{id}/epic_boards

Lists all epic boards for a specified group. This feature was introduced in GitLab 15.9.

id
required
string

The ID of a group

Example
1
page
integer
default: 1 nullable

Current page number

Example
1
per_page
integer
default: 20 nullable

Number of items per page

Example
20

OK

Media type application/json
object
id
integer format: int64
name
string
hide_backlog_list
boolean
hide_closed_list
boolean
group
object
id
integer format: int64
web_url
string
name
string
labels
Array<object>
object
id
integer format: int64
name
string
description
string
text_color
string
description_html
string
color
string
archived
boolean
lists
Array<object>
object
id
integer format: int64
label
object
id
integer format: int64
name
string
description
string
text_color
string
description_html
string
color
string
archived
boolean
position
integer
list_type
string
Example
{
"id": 1,
"name": "Team Board",
"hide_backlog_list": false,
"hide_closed_list": true,
"group": {
"web_url": "http://gitlab.example.com/groups/diaspora",
"name": "Diaspora"
},
"labels": [
{
"id": 1,
"name": "bug",
"description": "Bug reported by user",
"text_color": "#FFFFFF",
"description_html": "<p>Bug reported by user</p>",
"color": "#FF0000",
"archived": false
}
],
"lists": [
{
"id": 1,
"label": {
"id": 1,
"name": "bug",
"description": "Bug reported by user",
"text_color": "#FFFFFF",
"description_html": "<p>Bug reported by user</p>",
"color": "#FF0000",
"archived": false
},
"position": 1,
"list_type": "backlog"
}
]
}

Bad Request

Unauthorized

Forbidden

Not found