I want to use the Gitlab API to receive information about an epic.
I have the id and iid of the epic and want to get the detailed label information.
The documentation (Epics API | GitLab) let me tried the following request:
/api/v4/groups/6/epics/1?with_labels_details=true
I get the information about the specific epic, that’s good, but unfortunately I do not get detailed label information. The JSON looks like:
"labels": [
"bug"
],
How can I get the detailed label information for an epic by id or iid?
We are using self-managed GitLab Enterprise Edition [15.5.4-ee].