Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how get id custom field by name ?

Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 8, 2024
how get id custom field by name on groovy script ?

1 answer

1 accepted

1 vote
Answer accepted
Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 8, 2024
import com.atlassian.jira.component.ComponentAccessor

def customFieldManager = ComponentAccessor.getCustomFieldManager()
def customFields = customFieldManager.getCustomFieldObjectByName("your_cf_name").getId()

log.warn("id my field -> " + customFields)

 

Suggest an answer

Log in or Sign up to answer