JIRA API get custom field description

Paul Malone April 27, 2017

I cannot seem to find out how to get the 'description' of the custom field via the API.

1 answer

0 votes
Fabio Racobaldo [Herzum]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 1, 2022

Hi @Paul Malone ,

you can use the following rest api https://docs.atlassian.com/software/jira/docs/api/REST/8.22.4/#customFields-getCustomFields

The resonse contains the cf description 

Responses
EXAMPLE
{
    "id": "customfield_10000",
    "name": "New custom field",
    "description": "Custom field for picking groups",
    "type": "com.atlassian.jira.plugin.system.customfieldtypes:grouppicker",
    "searcherKey": "com.atlassian.jira.plugin.system.customfieldtypes:grouppickersearcher"
}

 

Hope this helps,

Fabio

Suggest an answer

Log in or Sign up to answer