Hello,
I am making a call to Jira, using Search for issues using JQL (POST), but when I enter the filter in the "jql" field in JQL language, I get the error "Enter a valid json".
The filter a use in Jira:
project = "PMO" AND status = "PMO Backlog" OR status = "Preparation" OR status = "solutiondesign" OR status = "Implementation" OR status = "Rampup" OR status = "In Operation" OR status = "Final invoice"
And using the documentatio, this is the doby of the HTTP call:
{
"expand": [
"names",
"schema",
"operations"
],
"fields": [
"summary",
"status",
"assignee"
],
"fieldsByKeys": false,
"jql": {"project = "PMO" AND status = "PMO Backlog" OR status = "Preparation" OR status = "solutiondesign" OR status = "Implementation" OR status = "Rampup" OR status = "In Operation" OR status = "Final invoice""},
"maxResults": 100,
"startAt": 0
} Anybody knows how I should to implement the filters in the body call?
Thanks.