We have a custom field 1234 that I need to filter issues from a project on. My jql is such:
"jql": "project=JIRA and created < 2023-07-07 "
Hi @Yida Li,
What is the type of your field customfield_1234? Is it a text field or a cascading select list?
Hi @Kseniia Trushnikova the format of customfield_1234 is as follows:
customfield_1234: {
requestType: {
id: 1
}
}
I need to get the customfield_1234.requestType.id to filter from the search API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked! So in summary if you have a custom field mapped already in JIRA when filtering using JQL use the alias name
customfield_1234.requestType.name was mapped to 'Custom Field Name'
so in JQL i queried for 'Custom Field Name' ~ 'JIRA'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.