Open majusmisiak opened 1 year ago
could it be this would be part of a solution for you? https://github.com/pycontribs/jira/pull/1626/files#diff-442d14b20d591afd0c3de830d2803e30d4816eedc708f9ad129316aa7e5a4a7cR2665
Hi @studioj unfortunately this endpoint returns fieldId
and name
, but not the description
.
For now, I am using plain requests.get()
to retrieve this information.
Problem trying to solve
I would like to be able to fetch
customfield
descriptions from Jira. Use case is for generating documentation of existing fields. It looks like there is no function in the library that supports fetching field description.Currently the library support
/field
endpoint, which strangely enough does not return custom field description.Example data structure
Possible solution(s)
There is another API endpoint in Jira server called
/customFields
, which seems to have relevant description data.LTS 8 and 9 version docs: https://docs.atlassian.com/software/jira/docs/api/REST/8.20.19/#api/2/customFields-getCustomFields https://docs.atlassian.com/software/jira/docs/api/REST/9.4.3/#api/2/customFields-getCustomFields
Alternatives
No response
Additional Context
Open to implement, if this is not already supported in some other way that I missed?