Hi,
I want to exclude the objects whose customfield value is null in the REST API. Find the below details:
https://abc.jira.com/rest/api/2/search?jql=project=CORE+and+fixVersion=4.2.11+and+status=Open&customfield_10090=null
{
"total": 1,
"issues": [
{
"id": "552524",
"self": "https://abc.jira.com/rest/api/2/issue/552524",
"key": "CORE-91240",
"fields": {
"customfield_10090": null
}
}
]
}Thank you for the help.
@Niclas Sandström [Riada] Thanks for your help. I tried that, but I am getting the below error:
{
"errorMessages": [
"Field 'customfield_10090' does not exist or you do not have permission to view it."
],
"warningMessages": []
}
Try
https://abc.jira.com/rest/api/2/search?jql=project=CORE+and+fixVersion=4.2.11+and+status=Open+and+customfield_10090+is+not+empty
Br, Niclas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try to utilize the POST search function.
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.